{{-- tableOfInvoices --}}
{{__('Seizure No.')}} | {{__('Operation No.')}} | {{__('Invoice No.')}} | {{__('Amount')}} | {{__('Title')}} | {{__('Date')}} | |
---|---|---|---|---|---|---|
{{ $invoice?->fileNumber }} | {{-- 1.1: operationNumber--}}{{ $invoice?->operationNumber ?? '—'}} | {{-- 1.2: invoiceNumber - amount --}}{{ $invoice?->invoiceNumber }} | {{ number_format($invoice?->invoiceAmount ?? 0, 2) }} | {{-- 1.3: title - date --}}{{ $invoice?->{__('title')} }} | {{date('d / m / Y', strtotime($invoice->invoiceDate)) }} | {{-- 1.4: documentFile --}}@if ($invoice->documentFile) {{-- :: noDocuments --}} @else @endif {{-- end if --}} |