@extends('landingpage::themes.job_board.layouts.master') @php // $products is paginated collection from PublicPageController // $pageTitle, $metaDescription, $activeTheme are also available $page = (object) [ 'title' => $pageTitle ?? 'Our Products', 'meta_title' => $pageTitle ?? 'Our Products - ' . setting('site_name'), 'meta_description' => $metaDescription ?? 'Browse our collection of high-quality products.', 'meta_keywords' => 'products, marketplace, items, for sale', 'slug' => 'products' ]; @endphp @section('theme_content')

{{ $page->title }}

@if($page->meta_description)

{{ $page->meta_description }}

@endif
{{-- Search/Filter Bar for Products --}}
{{-- Placeholder for category or other filters --}}
@if($products->isNotEmpty())
{{ $products->links('landingpage::themes.job_board.partials.pagination') }}
@else

No products found at the moment. Please check back later.

@endif
@endsection