@if(!$teacher_attendance->isEmpty())
Attendance Detail Of Teacher(s)
{{$ins_date}}
Detail List Shown Below
| Full name |
Mobile no |
Status |
@foreach($teacher_attendance as $st)
| {{$st->teacher->full_name}} |
{{$st->teacher->mobile_no}} |
@if($st->status == 'P' )
Present
@elseif($st->status == 'A')
Absent
@else
Late
@endif
|
@endforeach
@else
Attendance Detail Of Teacher(s)
{{$ins_date}}
No attendance was taken on date {{$ins_date}}
@endif
@endsection