{{ ctrans('texts.invoices') }}

@foreach($invoices as $invoice)
{{ ctrans('texts.invoice') }} {{ $invoice['number'] }}
{{ ctrans('texts.invoice_date') }}
{{ $invoice['date'] }}
@if($invoice['due_date'])
{{ ctrans('texts.due_date') }}
{{ $invoice['due_date'] }}
@endif
{{ ctrans('texts.amount_due') }}
{{ $invoice['formatted_currency'] }}
@endforeach @if($gateway_fee) @endif
{{ ctrans('texts.client_information') }}
{{ ctrans('texts.client') }}
{{ $client->present()->name() }}
{{ ctrans('texts.email') }}
{{ $client->present()->email() }}
@if($client->present()->phone())
{{ ctrans('texts.phone') }}
{{ $client->present()->phone() }}
@endif