{{ trans('texts.client') }} |
{{ trans('texts.email') }} |
@if ($multiUser)
{{ trans('texts.user') }} |
@endif
{{ trans(isset($entityType) && $entityType == ENTITY_QUOTE ? 'texts.quote_number' : 'texts.invoice_number') }} |
{{ trans('texts.balance') }} |
{{ trans('texts.amount') }} |
{{ trans('texts.po_number') }} |
{{ trans('texts.status') }} |
{{ trans(isset($entityType) && $entityType == ENTITY_QUOTE ? 'texts.quote_date' : 'texts.invoice_date') }} |
{{ trans('texts.due_date') }} |
@if ($account->custom_invoice_label1)
{{ $account->custom_invoice_label1 }} |
@endif
@if ($account->custom_invoice_label2)
{{ $account->custom_invoice_label2 }} |
@endif
@if ($account->custom_invoice_text_label1)
{{ $account->custom_invoice_text_label1 }} |
@endif
@if ($account->custom_invoice_text_label2)
{{ $account->custom_invoice_text_label2 }} |
@endif
@foreach ($invoices as $invoice)
@if (!$invoice->client->is_deleted)
{{ $invoice->present()->client }} |
{{ $invoice->present()->email }} |
@if ($multiUser)
{{ $invoice->present()->user }} |
@endif
{{ $invoice->invoice_number }} |
{{ $account->formatMoney($invoice->balance, $invoice->client) }} |
{{ $account->formatMoney($invoice->amount, $invoice->client) }} |
{{ $invoice->po_number }} |
{{ $invoice->present()->status }} |
{{ $invoice->present()->invoice_date }} |
{{ $invoice->present()->due_date }} |
@if ($account->custom_invoice_label1)
{{ $invoice->custom_value1 }} |
@endif
@if ($account->custom_invoice_label2)
{{ $invoice->custom_value2 }} |
@endif
@if ($account->custom_invoice_label1)
{{ $invoice->custom_text_value1 }} |
@endif
@if ($account->custom_invoice_label2)
{{ $invoice->custom_text_value2 }} |
@endif
@endif
@endforeach
|