@include('admin.pages.reports.print.header')
{{ __('Study Class') }}: {{ $data[0]['study_class'] }}
{{ __('Group') }}: {{ $data[0]['group'] }}
| # |
{{ __('Student Name') }} |
{{ __('Phone') }} |
{{ __('Notes') }} |
@foreach($data as $index => $student)
| {{ $index + 1 }} |
{{ $student['name'] }} |
{{ $student['phone'] }} |
|
@endforeach
@include('admin.pages.reports.print.footer')