@if ($owner->print_name)
@else
@endif
{{ $invoice->invoice_no }}
{{ $invoice->status == INVOICE_STATUS_PAID ? 'Paid' : 'Pending' }}
{{ __('Invoice To') }}
{{ $tenant->first_name }} {{ $tenant->last_name }}
{{ $tenant->email }}{{ $tenant->property_name }}
{{ $tenant->unit_name }}{{ __('Pay To') }}
@if ($owner->print_name)
{{ $owner->print_name }}
{{ $owner->print_address }}
{{ $owner->print_contact }} @else{{ getOption('app_name') }}
{{ getOption('app_location') }}
{{ getOption('app_contact_number') }} @endif{{ __('Invoice Items') }}
{{ __('Type') }} | {{ __('Description') }} | {{ __('Date') }} | {{ __('Amount') }} | {{ __('Tax') }} | {{ __('Total') }} |
---|---|---|---|---|---|
{{ $item->invoiceType?->name }} | {{ $item->description }} | {{ $item->created_at->format('Y-m-d') }} | {{ currencyPrice($item->amount) }} | {{ currencyPrice($item->tax_amount) }} | {{ currencyPrice($item->amount + $item->tax_amount) }} |
{{ __('Total') }}: {{ currencyPrice($invoice->amount) }}
{{ __('Transaction Details') }}
{{ __('Date') }} | {{ __('Gateway') }} | {{ __('Transaction ID') }} | {{ __('Amount') }} |
---|---|---|---|
{{ $order?->created_at->format('Y-m-d') }} | {{ $order?->gatewayTitle ?? 'Cash' }} | {{ $order?->payment_id }} | {{ currencyPrice($order?->total) }} |
{{ __('No Data Found') }} |