@extends("landingpage::themes.{$activeTheme}.layouts.app") @section('meta_title', $pageTitle ?? 'Our Products') @section('meta_description', $metaDescription ?? 'Discover our range of products.') @section('content')

{{ $pageTitle ?? 'Products' }}

@if(isset($metaDescription))

{{ $metaDescription }}

@endif
@if($products->isNotEmpty())
@foreach($products as $product)
@if($product->images && !empty($product->images[0])) {{ $product->name }} @else
No Image
@endif

{{ $product->name }}

${{ number_format($product->sale_price ?? $product->price, 2) }} @if($product->sale_price && $product->price > $product->sale_price) ${{ number_format($product->price, 2) }} @endif

View Details
@endforeach
{{-- Pagination Links --}}
{{ $products->links() }}
@else

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

@endif
@endsection