@php $pageTitle = $pageTitle ?? 'Best Combo Offer'; $pageSubtitle = $pageSubtitle ?? 'বিশেষ ছাড়ে কম্বো প্যাক — একসাথে কিনে সাশ্রয় করুন'; $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

{{ $pageTitle }}

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

সকল পণ্য দেখুন
@if($products->count())
@foreach($products as $product) @include($cardPartial, ['product' => $product, 'gridContext' => 'home']) @endforeach
{{ $products->links() }}
@else
এখন কোনো কম্বো অফার পণ্য নেই।
সকল পণ্য দেখুন
@endif