Fichier #{{ $batch->id }} · {{ $batch->raison_sociale }}
Référence : {{ $batch->reference }} ·
Date d'exécution : {{ \Illuminate\Support\Carbon::parse($batch->execution_date)->format('d/m/Y') }} ·
Nb virements : {{ $batch->nombre_virements }} ·
Montant total : {{ number_format($batch->montant_total, 0, ',', ' ') }}
| Numero |
Noms et prenoms |
code banque |
Code d'agence |
numéro de compte |
Cle RIB |
Libellé |
Montants |
@foreach($batch->lignes as $ligne)
| {{ $ligne->numero }} |
{{ $ligne->nom }} |
{{ $ligne->code_banque }} |
{{ $ligne->code_agence }} |
{{ $ligne->numero_compte }} |
{{ $ligne->cle_rib }} |
{{ $ligne->libelle }} |
{{ number_format($ligne->montant, 0, ',', ' ') }} |
@endforeach