@include('admin.pages.reports.print.header')

{{ __('Student Name') }}: {{ $data['studentName'] }}

{{ __('Group Name') }}: {{ $data['groupName'] }}

@php $totalAmount = 0; $totalPaid = 0; @endphp @foreach ($data['transactions'] as $transaction) @php $totalAmount += $transaction->amount; $totalPaid += $transaction->paid; @endphp @endforeach
{{ __('Billing Month') }} {{ __('Payment Date') }} {{ __('Amount') }} {{ __('Paid') }}
{{ $transaction->billing_month }} {{ $transaction->payment_date }} {{ $transaction->amount }} {{ $transaction->paid }}
{{ __('Total') }} {{ $totalAmount }} {{ $totalPaid }}
@include('admin.pages.reports.print.footer')