{{ $page_title }} {{ $payments->total() }}
@include('livewire.tenant.lemarex.payments.partials._header')
@include('livewire.tenant.lemarex.payments.partials._tools')
| @if ($manageColumns['invoice_id']) |
|
@endif
@if ($manageColumns['account_id'])
|
@endif
@if ($manageColumns['bank_account_id'])
|
@endif
@if ($manageColumns['billing_address_id'])
|
@endif
@if ($manageColumns['payment_method'])
|
@endif
@if ($manageColumns['reference_type'])
|
@endif
@if ($manageColumns['currency'])
|
@endif
@if ($manageColumns['amount'])
|
@endif
@if ($manageColumns['data'])
|
@endif
@if ($manageColumns['paid_at'])
|
@endif
@if ($manageColumns['transaction_id'])
|
@endif
@if ($manageColumns['status'])
|
@endif
@if ($manageColumns['created_at'])
|
@endif
@if ($manageColumns['updated_at'])
|
@endif
@if ($manageColumns['action'])
Action | @endif
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @if ($manageColumns['invoice_id']) | {{ $payment->invoice->invoice_number }} | @endif @if ($manageColumns['account_id']){{ $payment->account->name }} | @endif @if ($manageColumns['bank_account_id']){{ $payment->bank_account->account_name }} | @endif @if ($manageColumns['billing_address_id']){{ $payment->billing_address->address_line1 }} | @endif @if ($manageColumns['payment_method']){{ Str::of($payment->payment_method)->replace('_',' ')->title() }} | @endif @if ($manageColumns['reference_type']){{ $payment->reference_type ?? '---' }} | @endif @if ($manageColumns['currency']){{ $payment->currency ?? '---' }} | @endif @if ($manageColumns['amount'])${{ number_format($payment->amount, 2) }} | @endif @if ($manageColumns['data']){{ $payment->data ?? '---' }} | @endif @if ($manageColumns['status']){{ Str::of($payment->status)->replace('_',' ')->title() }} | @endif @if ($manageColumns['paid_at']){{ $payment->paid_at->format('d/m/Y H:i:s') }} | @endif @if ($manageColumns['transaction_id']){{ $payment->transaction_id ?? '---' }} | @endif @if ($manageColumns['created_at']){{ $payment->created_at->format('d/m/Y H:i:s') }} | @endif @if ($manageColumns['updated_at']){{ $payment->updated_at->format('d/m/Y H:i:s') }} | @endif @if ($manageColumns['action'])@endif |