@extends('layouts.app') @section('title', 'Nos Produits') @section('content') {{-- ═══ PRODUCTS BANNER ═══ --}}
{{-- Background image --}}
Nos accessoires mobiles
{{-- Decorative blobs --}}

Nos Produits

{{-- Sidebar Filters --}} {{-- Products Grid --}}
@if($products->isEmpty())

Aucun produit trouvé

Essayez de modifier vos filtres de recherche.

Voir tous
@else
@foreach($products as $product)
@if($product->image_url) {{ $product->name }} @else
@endif
@if($product->old_price) -{{ $product->discount_percent }}% @endif @if($product->is_featured) @endif

{{ $product->category->name ?? '' }}

{{ $product->name }}

@if($product->brand)

{{ $product->brand }}

@endif
{{ number_format($product->price, 0, ',', ' ') }} FCFA @if($product->old_price) {{ number_format($product->old_price, 0, ',', ' ') }} @endif
@if($product->stock > 0) En stock @else Rupture @endif
@if($product->stock > 0)
@csrf
@else Indisponible @endif
@endforeach
{{ $products->links() }}
@endif
@endsection