@extends('frontend.layouts.app') @section('contents')
Since {{ date('Y', strtotime($store->created_at)) }}

{{ $store->name }}

@php $ratingPercent = $store->reviews_avg_rating ? ($store->reviews_avg_rating / 5) * 100 : 0; @endphp
({{ round($store->reviews_avg_rating, 2) }})

{{ $store->short_description }}

  • Address: {{ $store->address }}
  • Call Us: {{ $store->phone }}
  • Email: {{ $store->email }}
{{--
--}}
@foreach($store->products as $product) @endforeach
@endsection