@extends('layouts.admin') @section('content') @can('client_create') LISTE DES COMMANDE FOURNISSEUR
Nouvelle Commande Fournisseur
@endcan
LISTE DES COMMANDES FOURNISSEURS
@foreach($commandes as $key => $commande) @endforeach
Ref. Fournisseur Date Montant Auteur Etat Action
{{ $commande->ref ?? '' }} {{ $commande->nom ?? '' }} {{ Carbon\Carbon::parse($commande->date_creation)->format('d/m/Y') ?? '' }} {{ number_format($commande->total_ttc, 0, '', ' ') ?? '' }} {{ $commande->name ?? '' }} {{ $commande->fk_statut ?? '' }} @can('commande_fournisseur_voire') @endcan @can('commande_fournisseur_supprimer')
@endcan
@endsection @section('scripts') @parent @endsection