Facture #{{ $facture->numero_facture }}
Date: {{ \Carbon\Carbon::parse($facture->date_creation)->locale('fr')->isoFormat('D MMM YYYY HH:mm') }}
Service | Catégorie | Sous-catégorie | Qté | Prix U. | Total |
---|---|---|---|---|---|
{{ $ligne->service->categorie->nom }} | |||||
{{ $ligne->service->sousCategorie->nom }} | |||||
{{ $ligne->service->nom }} | {{ $ligne->service->categorie->nom ?? '-' }} | {{ $ligne->service->sousCategorie->nom ?? '-' }} | {{ $ligne->quantite }} | {{ number_format($ligne->prix_unitaire, 0, ',', ' ') }} € | {{ number_format($ligne->quantite * $ligne->prix_unitaire, 0, ',', ' ') }} € |
Total HT: | {{ number_format($facture->montant_total, 0, ',', ' ') }} € |
Réduction ({{ $facture->pourcentage_reduction }}%): | - {{ number_format($facture->montant_total * $facture->pourcentage_reduction / 100, 0, ',', ' ') }} € |
Montant TTC: | {{ number_format($facture->montant_total - ($facture->montant_total * $facture->pourcentage_reduction / 100), 0, ',', ' ') }} € |
Montant Payé: | {{ number_format($facture->montant_paye, 0, ',', ' ') }} € |
Reste à Payer: | {{ number_format(($facture->montant_total - ($facture->montant_total * $facture->pourcentage_reduction / 100)) - $facture->montant_paye, 0, ',', ' ') }} € |