@if(str_replace('-', ' ', Request::path()) != "administration") @endif
LISTE DES COMMANDES
@foreach($commandes as $commande) @endforeach
ARTICLE QTE PRIX FOURNISSEUR ETAT DE LA COMMANDE ACTION
{{ DB::table("materiaus")->find($commande->article)->nom ?? '' }} {{ $commande->quantite ?? '' }} {{ $commande->prix ?? '' }} {{ DB::table("fournisseurs")->find($commande->fournisseur)->nom ?? '' }} {{ $commande->etat == 0 ? 'En attente de livraison' : 'Livraison éffectuée' ?? '' }} @if(collect(["BOSS", "RESPONSABLE EXECUTION"])->contains(auth()->user()->role)) @endif
{{ $commandes->links() }}