logo
logo

Invoice NO.

{{ $finance_invoice->invoice_number }}


Date: {{ $finance_invoice->created_at->format('Y-m-d') }} Invoice No: {{ $finance_invoice->invoice_number }}

Invoiced To:
Full Name: {{ $finance_invoice->student->full_name }}
Email: {{ $finance_invoice->student->email }}
Phone: {{ $finance_invoice->student->mobile }}
Address: {{ $finance_invoice->student->current_address }}
Refund Policy:
- Full refund if cancellation is made 7 days before the course start date.
- 50% refund if within the first 7 days of the course.
- No refund after the first week of the course.
- Non-refundable registration, administrative, and material fees.
Course Name Levels Amount
{{ $finance_invoice->staff_scheduled->course_name_en }} {{ $finance_invoice->levels_id }} {{ $finance_invoice->staff_scheduled->trackType->track_pricing_plans[0]->price }}
@php $total_price = $finance_invoice->staff_scheduled->trackType->track_pricing_plans[0]->price; $total_tax_amount = ($total_price * 14) / 100; $total_price_after_tax = $total_price + $total_tax_amount; @endphp
Sub Total: {{ $total_price }}
Tax (14%): {{ $total_tax_amount }}
Total: {{ $total_price_after_tax }}