@extends('templates/header') @section('content')

{{$categorie->titre}}

Il y a {{ $count }} produits

@foreach ($posts as $item) @if ($item->categorie === $categorie->titre)
@if($item->promo === 'promo')
Promotion
@endif
@if(empty($item->prixp)) {{ $item->prix}} @else {{ $item->prixp}} {{ $item->prix}} @endif
@csrf
Devis
@endif @endforeach
{{ $posts->links() }}
@endsection