Société Diaye Core Sarl
Commerce Général - Import - Export Logistique et Transport
Siège : Hamdallaye ACI 2000 Près de l’Hôtel Colonne
Rue 358 - Porte 59
Tél. : +223 64 63 97 31 / +223 77 98 22 66
RC : N°MABKO. 2024. B. 6507
Compte bancaire N°25181142901 B.O.A

FACTURE

Réf : {{ $invoice->reference }}

Date : {{ \Carbon\Carbon::parse($invoice->date)->format('d/m/Y') }}

Facturé à :
Nom : {{ $invoice->client->name }}
Contact : {{ $invoice->client->phone }}
Adresse : {{ $invoice->client->address ?? '-' }}
@foreach($invoice->items as $key => $item) @endforeach
# Camion Désignation Quantité Prix Montant
{{ $key + 1 }} {{ $item->camion }} {{ $item->designation }} {{ $item->quantity }} {{ number_format($item->price, 0, ',', ' ') }} FCFA {{ number_format($item->amount, 0, ',', ' ') }} FCFA
Total : {{ number_format($invoice->amount->amount_items ?? 0, 0, ',', ' ') }} FCFA
Remise : {{ number_format($invoice->amount->discount ?? 0, 0, ',', ' ') }} FCFA
Payé : {{ number_format($invoice->amount->amount_payments ?? 0, 0, ',', ' ') }} FCFA
Reste : {{ number_format($invoice->amount->remainder ?? 0, 0, ',', ' ') }} FCFA
@if($invoice->note)
Note :

{{ $invoice->note }}

@endif