@if ($achat_details->count() > 0)
# |
Numero de compte |
Début |
Fin |
Situation |
Actions |
@foreach ($achat_details as $key => $item)
{{ $key + 1 }} |
{{ $item->number_compte }} |
{{ \Carbon\Carbon::parse($item->start)->format('d/m/Y') }} |
@if ($item->end != null)
{{ \Carbon\Carbon::parse($item->end)->format('d/m/Y') }}
@else
'N/A'
@endif
|
@if ($item->end != null)
Fermée
@else
En cour
@endif
|
|
@endforeach
@else
Aucune donnée disponible.
@endif