@extends(adminLayout())
@section('page-title','')
@section('breadcrumb')
@include('admin.partials.crumb',[
'crumbs'=>[
route('admin.dashboard')=>__('default.dashboard'),
'#'=>isset($pageTitle)?$pageTitle:''
]])
@endsection
@section('content')
{{ __lang('id') }} |
{{ __lang('last-name') }} |
{{ __lang('first-name') }} |
{{ __lang('classes-attended') }} |
{{__lang('actions')}} |
@php foreach($rowset as $row): @endphp
{{ $row->student_id }} |
{{ $row->last_name }} |
{{ $row->name }} |
{{ $attendanceTable->getTotalForStudent($row->student_id) }} |
|
@php endforeach; @endphp
@endsection