@extends('layouts.admin-modern') @section('title', 'Factures') @section('content')
Rafraîchir
Total: {{ $invoices->total() ?? 0 }}
@forelse($invoices as $i) @empty @endforelse
Numéro Client Montant Statut Date Actions
{{ $i->number ?? $i->id }} {{ $i->user_name ?? '—' }} {{ number_format($i->total ?? 0, 2, ',', ' ') }} € {{ ucfirst($i->status ?? '—') }} {{ $i->created_at }} Télécharger
@csrf
Aucune facture trouvée.
{{ $invoices->appends(request()->query())->links() }}
@endsection @section('scripts') @endsection