@extends('layouts.app') @section('title', 'Produits') @section('content')

Nos produits de qualité

@forelse($products as $product)
@php $image = $product->image; @endphp @if ($image) {{ $product->name }} @else {{ $product->name }} @endif
{{ $product->name }}
@if ($product->promotion_price)
{{ number_format($product->price, 2) }} €
{{ number_format($product->promotion_price, 2) }} €
@else
{{ number_format($product->price, 2) }} €
@endif
{!! Str::limit( strip_tags($product->description, '


    1. '), 400, ) !!}
Détails

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

@empty

Aucun produit trouvé.

@endforelse
{{ $products->links() }}
@endsection