@php
$n = ($is_facture) ? 7 : 5 ;
@endphp
| {{ $this->title_detail }} |
@if($list_data_detail)
@if($is_facture)
| Dénomination |
Date |
Libellé |
N° Facture |
Montant |
Solde |
Devise |
@else
| Compte |
Intitulé |
Débit |
Crédit |
Devise |
@endif
@endif
@forelse($list_data_detail as $data )
@if($is_facture)
| {{ $data->denomination }} |
{{ get_format_date($data->date_facture) }} |
{{ $data->intitule }} |
{{ $data->num_facture }} |
{{ get_format_montant($data->montant) }} |
{{ get_format_montant($data->solde) }} |
{{ $data->devise }} |
@else
| {{ $data->fk_num_compte }} |
{{ $data->nom_compte }} |
{{ get_format_montant($data->debit) }} |
{{ get_format_montant($data->credit) }} |
{{ $data->devise }} |
@endif
@empty
| Aucune donnée trouvée |
@endforelse