@extends('theme::layouts.app') @section('title', $title) @section('content')
{{-- Breadcrumbs Section --}} @include('theme::partials.breadcrumbs') {{-- Main Content --}}

{{ $pageHeader['title'] }}

{{ $pageHeader['subtitle'] }}

{{-- Sidebar --}} {{-- Product Grid --}}
{{-- Toolbar --}}

@lang('shop.Showing') {{ $products->firstItem() ?? 0 }}-{{ $products->lastItem() ?? 0 }} @lang('shop.of') {{ $products->total() }} @lang('shop.products')

{{-- Grid --}}
@forelse($products as $product) @include('theme::components.cards.product', ['product' => $product]) @empty
search_off

@lang('shop.heading|No products found')

@lang('shop.Try adjusting your search or filters.')

@endforelse
{{-- Pagination --}}
{{ $products->appends(request()->input())->links('theme::partials.pagination') }}
@endsection