|
{{ __('invoices.issued_to') }} {{ $invoice->user_name }} @foreach($invoice->user_properties as $property) {{ $property }} @endforeach |
{{ strtoupper(__('invoices.bill_to')) }} {!! nl2br(e($invoice->bill_to)) !!} |
{{ !$invoice->number && config('settings.invoice_proforma', false) ? __('invoices.proforma_invoice_date') : __('invoices.invoice_date') }}: {{ $invoice->created_at->format('d/m/Y') }}
@if($invoice->number){{ __('invoices.invoice_no') }}: {{ $invoice->number }}
@endif| {{ __('invoices.item') }} | {{ __('invoices.quantity') }} | {{ __('invoices.unit_price') }} | {{ __('invoices.total') }} |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | {{ $item->formattedPrice }} | {{ $item->formattedTotal }} |
| {{ __('invoices.subtotal') }} | {{ $invoice->formattedTotal->format($invoice->formattedTotal->price - $invoice->formattedTotal->tax) }} |
| {{ $invoice->tax->name }} ({{ $invoice->tax->rate }}%) | {{ $invoice->formattedTotal->formatted->tax }} |
| {{ __('invoices.total') }} | {{ $invoice->formattedTotal }} |
| {{ __('invoices.total') }} | {{ $invoice->formattedTotal }} |
| {{ __('invoices.transaction_id') }} | {{ __('invoices.payment_date') }} | {{ __('invoices.amount') }} | {{ __('invoices.payment_method') }} |
|---|---|---|---|
| {{ $transaction->transaction_id }} | {{ $transaction->created_at->format('d/m/Y') }} | {{ $transaction->formattedAmount }} | {{ $transaction->gateway ? $transaction->gateway->name : '' }} |