@if (isset($invoice->patient->address) && !empty($invoice->patient->address)) {{ ucfirst($invoice->patient->address->address1) . ' ' . ucfirst($invoice->patient->address->address2) . ', ' . ucfirst($invoice->patient->address->city) . ' ' . $invoice->patient->address->zip }} @else {{ __('messages.common.n/a') }} @endif
{{ $hospitalAddress == '' ? __('messages.common.n/a') : $hospitalAddress }}
{{ __('messages.account.account') }} | {{ __('messages.invoice.description') }} | {{ __('messages.invoice.qty') }} | {{ __('messages.invoice.price') }} | {{ __('messages.invoice.amount') }} |
---|---|---|---|---|
{{ $invoiceItem->account->name }} | {!! $invoiceItem->description != '' ? nl2br(e($invoiceItem->description)) : __('messages.common.n/a') !!} | {{ $invoiceItem->quantity }} | {{ checkNumberFormat($invoiceItem->price, strtoupper(getCurrentCurrency())) }} | {{ checkNumberFormat($invoiceItem->total, strtoupper(getCurrentCurrency())) }} |
{{ __('messages.invoice.sub_total') . ':' }} | {{ checkNumberFormat($invoice->amount, strtoupper(getCurrentCurrency())) }} |
{{ __('messages.invoice.discount') . ':' }} | {{ checkNumberFormat(($invoice->amount * $invoice->discount) / 100, strtoupper(getCurrentCurrency())) }} |
{{ __('messages.invoice.total') . ':' }} | {{ checkNumberFormat($invoice->amount - ($invoice->amount * $invoice->discount) / 100, strtoupper(getCurrentCurrency())) }} |