@if (Session::get('success'))
{{ Session::get('success') }}
@endif
@if ($invoices->count() > 0)
@foreach ($invoices as $key => $invoice) @endforeach
# Date Référence Client Statut Action
{{ $key + 1 }} {{ \Carbon\Carbon::parse($invoice->date)->format('d/m/Y') }} {{ $invoice->reference }} {{ $invoice->client->name }} @if ($invoice->status == 1) Payé @elseif ($invoice->status == 2) Partiel @else Non payé @endif
@else
Corbeille

Aucun élément trouvé.

@endif