| {{ __($record->billing_month_name) }} |
{{ $record->payment_date->format('Y-m-d') }} |
{{ $record->student->name }} |
{{ $record->payment_status->name }} |
{{ number_format($record->amount, 2) }} |
{{ number_format($record->discounted, 2) }} |
{{ number_format($record->paid, 2) }} |
{{ number_format($record->remain, 2) }} |
@endforeach
| {{__('Total')}} |
{{number_format($records->sum('amount'), 2)}} |
{{number_format($records->sum('discounted'), 2)}} |
{{number_format($records->sum('paid'), 2)}} |
{{number_format($records->sum('remain'), 2)}} |