BT Logistique
Faladie, non loin de la Tour d'afrique, en face de la station Total,
Bamako, Mali

Rue : 790 - Porte : 256
+223 76 71 71 70
contact@btlogistique.com

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->address }}
@foreach($invoice->items as $key => $item) @endforeach
# Désignation Quantité Prix Montant
{{ $key + 1 }} {{ $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