@extends('layout.report') @section('style') @endsection @section('report')

Attendance List

Supervisor: {{ $instructor->user->name }}  {{ 'exported at: ' . date('d-m-Y H:i') }}
@php $index = 0; $students = $instructor->students->sortBy(function($student, $key) { return $student->group->name; }); @endphp @foreach ($students as $student) @endforeach
# Trainee Number Name Group
{{ ++$index }} {{ $student->student_number }} {{ $student->user->name }} {{ $student->group->name }}
@endsection