@php $cardPartial = match(\App\Services\ThemeService::active()) { 'cloth' => 'themes.cloth.layouts.product-card', 'electronics' => 'themes.gadget.layouts.product-card', 'gadget' => 'themes.gadget.layouts.product-card', 'jewelry' => 'themes.jewelry.layouts.product-card', 'smartbazar' => 'themes.smartbazar.layouts.product-card', 'panjabi' => 'themes.panjabi.layouts.product-card', default => 'themes.organic.layouts.product-card', }; @endphp

সকল পণ্য

মোট {{ $products->total() }}টি পণ্য

@if($products->count())
@foreach($products as $product) @include($cardPartial, ['product' => $product, 'gridContext' => 'category']) @endforeach
{{ $products->links() }}
@else
কোনো পণ্য পাওয়া যায়নি।
হোমে ফিরে যান
@endif