@forelse ($factures as $f)
@php
$display = $f['RAISON_SOCIALE'] ?: $f['NOM_CLIENT'] ?? '';
@endphp
| {{ $f['IDFACTURE'] }} |
{{ $display }} |
{{ $f['ADRESSE1'] }}
@if ($f['ADRESSE2'])
{{ $f['ADRESSE2'] }}
@endif
{{ $f['CPOSTAL'] }} {{ $f['VILLE'] }}
|
{{ $f['MTT_TOTAL_TTC'] }} € TTC |
@include('admin.gestan.partials.badge-status', [
'statut' => $f['STATUT_FAD'] ?? null,
])
|
{{ $f['US_RESP'] }} {{ $f['DHCRE'] }} |
|
@empty
|
Aucun devis trouvé.
|
@endforelse