@extends('frontend.app') @section('content') @php use App\Models\AdminText; // ✅ DB থেকে টেক্সট লোড $adminText = AdminText::first(); // ✅ ডিফল্ট ভ্যালু সেট করা $popularTitle = $adminText->popular_category_title ?? 'জনপ্রিয় ক্যাটাগরি'; $viewAllText = $adminText->view_all_text ?? 'View All'; @endphp {{-- ✅ DESKTOP SLIDER --}} @foreach($sliders as $s) @endforeach {{-- ✅ MOBILE SLIDER --}} @foreach($sliders as $s) @endforeach {{-- ✅ POPULAR CATEGORY SECTION --}} {{ $popularTitle }} @foreach($cats as $cat) {{ $cat->name }} @endforeach {{-- ✅ PRODUCTS LOOP --}} @foreach ($homeProducts as $categoryId => $products) @if(!empty($products->first()->category->id)) {{ $products->first()->category->name }} {{ $viewAllText }} @endif @foreach($products as $product) @include('frontend.products.partials.product_section', ['adminText' => $adminText]) @endforeach @endforeach View All Products @endsection @push('js') @endpush
{{ $cat->name }}