@include('admin.pages.reports.print.header')
@foreach($data->groupBy('group') as $groupName => $groupData)
{{ __('Study Class') }}: {{ $groupData[0]['study_class'] }}
{{ __('Group') }}: {{ $groupName }}
{{ __('Month') }}: {{ __($groupData[0]['month']) }}
| # |
{{ __('Student Name') }} |
@for($i = 1; $i <= 24; $i++)
|
@endfor
@foreach($groupData as $index => $student)
| {{ $index + 1 }} |
{{ $student['name'] }} |
@for($i = 1; $i <= 24; $i++)
|
@endfor
@endforeach
@if(!$loop->last)
@endif
@endforeach
@include('admin.pages.reports.print.footer')