@extends('layouts.admin') @section('content') @can('client_create') LISTE DES COMMANDE CLIENTS
@csrf
@endcan
LISTE DES PRODUITS COMMANDES DE L'ANNEE {{ $date }}
@foreach($rap as $produit => $quantite) @endforeach
Produit Quantité
{{ $produit }} {{ $quantite }}
TOTAL : {{ number_format($total, 0, '', ' ') }}

Quantité de produit commandé

@endsection @section('scripts') @parent @endsection