@if (Session::get('success'))
{{ Session::get('success') }}
@endif
@if ($taches->count() > 0)
| # |
Reference |
Date |
Tailleur |
Quantité |
Type |
Prix |
Total |
Action |
@foreach ($taches as $key => $tache)
| {{ $key + 1 }} |
{{ $tache->reference }} |
{{ \Carbon\Carbon::parse($tache->date)->format('d/m/y')}} |
{{ $tache->tailleur->first_name }} {{ $tache->tailleur->last_name }} |
{{ $tache->nombre }} |
{{ $tache->type }} |
{{ number_format($tache->prix, 0, '.', ' ') }} GNF |
{{ number_format($tache->total, 0, '.', ' ') }} GNF |
@can('modifier_une_tache')
@endcan
@can('supprimer_une_tache')
@endcan
|
@endforeach
@else
Aucun élément trouvé.
@endif