@php $company = company(); @endphp
Name: {{ $invoice->member->full_name }}
Email: {{ $invoice->member->email ?? 'N/A' }}
Mobile: {{ $invoice->member->mobile }}
@elseName: {{ $invoice->organizer->full_name }}
Organization: {{ $invoice->organizer->organization_name }}
Email: {{ $invoice->organizer->email ?? 'N/A' }}
Mobile: {{ $invoice->organizer->mobile }}
@endifInvoice No: {{ $invoice->invoice_no }}
Invoice Date: {{ $invoice->invoice_date?->format('d M, Y') }}
Bill Period: {{ ucfirst($invoice->bill_period) }}
Period From: {{ $invoice->bill_period_start?->format('d M, Y') }}
Period To: {{ $invoice->bill_period_end?->format('d M, Y') }}
| # | Description | Amount |
|---|---|---|
| 1 | {{ Str::ucfirst($invoice->bill_period) }} {{ $invoice->type == 'member' ? 'Member Fees' : 'Subscription Bill' }} | {{ number_format($invoice->amount, 2) }} |
|
@if ($invoice->payment_status == 'unpaid')
UNPAID
@else
PAID
@endif
|
|