{{ $bon->numero_sys ?: 'RECU' }}
ORIGINAL
ORIGINAL
Reçu de bon de caisse N° : {{ $bon->numero_sys ?: 'N/A' }} - ORIGINAL
Bon à servir N° : {{ $bon->num_bon_sys ?? 'N/A' }} consommé en date du :
{{ \Carbon\Carbon::parse($bon->serviele)->format('d/m/Y H:i') }}
Montant payé :
{{ number_format($bon->montant_paye, 0, ',', ' ') }} Fbu
Soit la somme de : {{ $montant_lettre }} Francs burundais
Mode de paiement :
@php
$modes = [
1 => 'Espèces',
2 => 'Chèque',
3 => 'Virement',
4 => 'Carte bancaire',
5 => 'Mobile money',
];
@endphp
{{ $modes[$bon->mode_paiement] ?? 'Non spécifié' }}
Véhicule :
@if(isset($bon->id_vehicule))
{{ $bon->marque ?? '' }} {{ $bon->modele ?? '' }} -
{{ $bon->num_immatriculation ?? '' }}
@else
Non spécifié
@endif
Motif :
@if(isset($bon->numero_recu))
{{ $bon->numero_recu ?? '' }}
@else
Non spécifié
@endif
Quantité servie :
{{ number_format($bon->quantite_servie ?? 0, 2, ',', ' ') }} Litres
Prix unitaire :
{{ number_format($bon->pu ?? 0, 0, ',', ' ') }} Fbu/L
Montant total du bon :
{{ number_format($bon->montant_a_payer ?? 0, 0, ',', ' ') }} Fbu
Reste à payer après ce reçu :
{{ number_format(($bon->montant_restant_a_payer ?? 0), 0, ',', ' ') }} Fbu
@if(!empty($bon->description))
Description : {{ $bon->description }}
@endif
Effectué par :
@php
$user = DB::table('users')->where('id', $bon->effectue_par)->first();
@endphp
{{ $user->name ?? 'N/A' }}
{{ $bon->numero_sys ?: 'RECU' }}
DUPLICATA
DUPLICATA
Reçu de bon de caisse N° : {{ $bon->numero_sys ?: 'N/A' }} - DUPLICATA
Bon à servir N° : {{ $bon->num_bon_sys ?? 'N/A' }} consommé en date du :
{{ \Carbon\Carbon::parse($bon->serviele)->format('d/m/Y H:i') }}
Montant payé :
{{ number_format($bon->montant_paye, 0, ',', ' ') }} Fbu
Soit la somme de : {{ $montant_lettre }} Francs burundais
Mode de paiement :
@php
$modes = [
1 => 'Espèces',
2 => 'Chèque',
3 => 'Virement',
4 => 'Carte bancaire',
5 => 'Mobile money',
];
@endphp
{{ $modes[$bon->mode_paiement] ?? 'Non spécifié' }}
Véhicule :
@if(isset($bon->id_vehicule))
{{ $bon->marque ?? '' }} {{ $bon->modele ?? '' }} -
{{ $bon->num_immatriculation ?? '' }}
@else
Non spécifié
@endif
Motif :
@if(isset($bon->numero_recu))
{{ $bon->numero_recu ?? '' }}
@else
Non spécifié
@endif
Quantité servie :
{{ number_format($bon->quantite_servie ?? 0, 2, ',', ' ') }} Litres
Prix unitaire :
{{ number_format($bon->pu ?? 0, 0, ',', ' ') }} Fbu/L
Montant total du bon :
{{ number_format($bon->montant_a_payer ?? 0, 0, ',', ' ') }} Fbu
Reste à payer après ce reçu :
{{ number_format(($bon->montant_restant_a_payer ?? 0), 0, ',', ' ') }} Fbu
@if(!empty($bon->description))
Description : {{ $bon->description }}
@endif
Effectué par :
@php
$user = DB::table('users')->where('id', $bon->effectue_par)->first();
@endphp
{{ $user->name ?? 'N/A' }}