| {{ $loop->iteration }} |
{{ $invoice->invoice_no }} |
{{ $invoice->member?->member_id ?? '-' }} |
{{ $invoice->member?->full_name ?? '-' }} |
{{ number_format($invoice->amount, 2) }} |
{{ ucfirst($invoice->bill_period) }} |
{{ $invoice->invoice_date?->format('d M, Y') }} |
{{ $invoice->last_due_date?->format('d M, Y') }} |
{{ ucfirst($invoice->payment_status) }}
|
{{ $invoice->payment_date?->format('d M, Y') }} |
{{ $invoice->payment_type }} |
{{ $invoice->transaction_no }} |
@if ($invoice->is_payment_submit==false || $invoice->payment_status == 'paid')
@endif
@if ($invoice->is_payment_submit && $invoice->payment_status == 'unpaid')
Payment Confirm
@endif
|
@empty