{{$fees_payment->fees_type_id.'/'.$fees_payment->id}} |
{{$fees_payment->payment_date != ""? dateConvert($fees_payment->payment_date):''}}
|
{{$fees_payment->studentInfo !=""?$fees_payment->studentInfo->full_name:""}} |
@if($fees_payment->studentInfo!="" && $fees_payment->studentInfo->class!="")
{{$fees_payment->studentInfo->class->class_name}}
@endif
|
{{$fees_payment->feesType!=""?$fees_payment->feesType->name:""}} |
{{@$fees_payment->payment_mode}}
|
@php
$total = $total + $fees_payment->amount;
$grand_amount = $grand_amount + $fees_payment->amount;
echo currency_format($fees_payment->amount);
@endphp
|
@php
$total = $total + $fees_payment->fine;
$grand_fine = $grand_fine + $fees_payment->fine;
echo currency_format($fees_payment->fine);
@endphp
|
@php
$grand_total = $grand_total + $total;
echo currency_format($total);
@endphp
|
@endforeach
@endforeach