@yield('meta')
Bd Inclusive | {{ $title }}
@yield('custom_css')
{{-- loader --}}
Home
Category
@foreach ($categories as $category)
{{ $category->category_name }} @if ($subcategories->where('category_id', $category->id)->isNotEmpty())
@endif
@foreach ($subcategories->where('category_id', $category->id) as $subcategory)
{{ $subcategory->sub_category_name }}
@endforeach
@endforeach
About
Shop Now
@if (!Auth::check())
Sign In
@else @if (Auth::user()->role == 2)
Admin Panel
@endif @endif
@if (isset($_announcement))
{{ $_announcement->title }}
ShopNow
@endif
Home
About
@if (!Auth::check())
Sign Up
@else @if (Auth::user()->role == 2)
Admin Panel
@endif @endif
@yield('content') @yield('scripts')