@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{ trans('labels.student_management') }}

@endsection @section('content')
@include('dashboard.pages.student-management.partials.table-lecture-contents')
@foreach ($centerAttendance as $attendance) @endforeach
{{ trans('labels.student_id') }} {{ trans('labels.name') }} {{ trans('labels.attendance') }} {{ trans('labels.degree') }}
{{ $attendance->student->student_id }} {{ $attendance->student->name }} {{ $attendance->attendance ? $attendance->attendance : $attendance->reason }} {{ $attendance->degree }}
@endsection @section('script') @endsection