@extends('frontend.template-1.partials.master') @section('content') @include('frontend.template-1.breadcrumb.breadcrumb')
image image
@if (fileExists('uploads/shop/', $shop_details->cover_img) != false && $shop_details->cover_img != null) Shop Logo @else cover photo @endif

{{ $shop_details->name }}

{{ translate('Total Items') }}: {{ $products->count() }}

    @php $reviews = merchantViewRatings($shop_details->author_id); @endphp @switch($reviews->avg('rate') ?? 0) @case(1)
  • @break @case(1.5)
  • @break @case(2)
  • @break @case(2.5)
  • @break @case(3)
  • @break @case(3.5)
  • @break @case(4)
  • @break @case(4.5)
  • @break @case(5)
  • @break @default
  • @endswitch
  • ({{ $reviews->avg('rate') ?? 0 }})
{{ $reviews->count() }} {{ translate('Reviews') }}

{{ translate('Showing') }} {{ $products->count() }} {{ translate('result') }}

{{ translate('Filter By') }}:
@include('frontend.template-' . $templateId . '.partials.filter-products', [ 'products' => $products, ])
@endsection @push('js') @endpush