{{--
--}}
RESTAURANT BMT MOBILITE
TICKET DE CAISSE
{{ $facture->numero }}
TEL : +229 56566029
{{ $facture->date_formatted }} - {{ now()->format('H:i:s') }}
Caissier:
{{ Auth::user()->name }}
@foreach($facture->lignes as $ligne)
{{ $ligne->produit ? $ligne->produit->name : $ligne->service->name }}
{{ $ligne->quantite }}
{{ number_format($ligne->prix_unitaire, 0, '', ' ') }}
{{ number_format($ligne->total, 0, '', ' ') }}
@endforeach
Total:
{{ number_format($facture->total_ttc, 0, '', ' ') }} FCFA
Montant réglé:
{{ number_format($facture->montant_regle, 0, '', ' ') }} FCFA
@if($facture->montant_regle < $facture->total_ttc)
Reste à payer:
{{ number_format($facture->total_ttc - $facture->montant_regle, 0, '', ' ') }} FCFA
@endif