Invoice |
Dreamers Academy
Mega Dori, Lift#4, H#57/A, R#15/A, Dhanmondi
++880 1897-717780, ++880 1897-717781
|
Student Name: {{ $payment->student->user->name }}
Guardian Name: {{ $payment->student->parent->name }}
Email: {{ $payment->student->parent->email }}
|
Invoice ID: {{ $payment->invoice_id }}
|
Course | Payment Date | Payment Details | Amount |
{{ $payment->enrollment?->course?->name ?? 'Coding for Kids' }} | {{ date('d M, Y', strtotime($payment->date)) }} |
Transaction Type: {{ $payment->transaction_type }}
Transaction ID: {{ $payment->transaction_id }}
Installment: {{ $payment->installment }}
@php
$showMonth = '';
if($payment->for_month){
$for_months = json_decode($payment->for_month, true);
foreach ($for_months as $month){
$showMonth.= $month .', ';
}
}
@endphp
For the Month: {{ rtrim($showMonth, ', ') . ', ' . $payment->year }}
Purpose: {{ $payment->transaction_purpose }}
|
{{ $payment->fees }} ({{ $payment->currency }}) |
Total Paid | {{ $payment->fees }} ({{ $payment->currency }}) |