{{-- tableOfInvoices --}}
{{-- filters --}} {{-- 1: operationNumber --}}
{{-- 2: fromDate --}}
{{-- 3: untilDate --}}
{{-- ------------------------------------------------- --}} {{-- ------------------------------------------------- --}} {{-- ------------------------------------------------- --}} {{-- ------------------------------------------------- --}} {{-- table --}}
{{-- headers --}} {{-- endHeaders --}} {{-- -------------------------- --}} {{-- -------------------------- --}} {{-- body --}} {{-- loop - invoices --}} @foreach ($invoices ?? [] as $key => $invoice) {{-- 1: operationNumber--}} {{-- 1.2: invoiceNumber - amount --}} {{-- 1.3: title - date --}} {{-- 1.4: documentFile --}} @endforeach {{-- end loop --}}
{{__('Execution No.')}} {{__('Invoice No.')}} {{__('Amount')}} {{__('Title')}} {{__('Date')}}
{{ $invoice?->operationNumber ?? '—' }}{{ $invoice?->invoiceNumber }} {{ number_format($invoice?->invoiceAmount ?? 0, 2) }}{{ $invoice?->{__('title')} }} {{date('d / m / Y', strtotime($invoice->invoiceDate)) }} @if ($invoice->documentFile) {{-- :: noDocuments --}} @else @endif {{-- end if --}}
{{-- endCol --}}
{{-- endRow --}}