|
Facturé à
Email :
{{ $transaction->customer?->email ?? '—' }}
Téléphone :
{{ $transaction->customer?->phone ?? '—' }}
|
{{-- Colonne droite : Paiement --}}
Paiement
Méthode :
{{ strtoupper($transaction->payment_method ?? '—') }}
Numéro :
{{ strtoupper($transaction->masked_payment_phone ?? '—') }}
@if (!empty($cashierName))
Caissier :
{{ $cashierName }}
@endif
|
Détail · {{ $transaction->offering->name ?? 'Paiement' }}
| Désignation | Prix unitaire | Qté | Total |
|---|---|---|---|
| {{ $line['name'] }} | {{ number_format($line['unit_price'], 0, ',', ' ') }} F | {{ $line['quantity'] }} | {{ number_format($line['total'], 0, ',', ' ') }} F |
| Sous-total | {{ number_format($transaction->amount, 0, ',', ' ') }} F CFA |
| Frais | {{ number_format($transaction->total_fees, 0, ',', ' ') }} F CFA |
| TOTAL | {{ number_format($transaction->total_amount, 0, ',', ' ') }} F CFA |
Informations complémentaires
|
{{-- Colonne QR --}}
@if ($qrcodeValue && !empty($qrSvg))
|