Invoice #{{ $invoice->purchase_id }}
Date: {{ $invoice->created_at->format("dS M Y") }}
| # | Plan purchased | Payment Method | Price |
|---|---|---|---|
| 1 | {{ ucwords($invoice->plan->plan_name) }} |
{{ ucfirst($invoice->payment_method) }} | Rs {{ $invoice->sub_total }} |
| Subtotal | Rs {{ $invoice->sub_total }} | ||
| Discount | -Rs {{ $invoice->discount }} | ||
| TOTAL | Rs {{ $invoice->grand_total }} | ||