@extends('layouts.teacher.app') @section('content')

Curricular Activity Absent Report

@include('layouts.messages')

Session Details

Code: {{ $session->kod_sub }} - {{ $session->desc_sub }}

@php use Carbon\Carbon; @endphp

Date: {{ Carbon::parse($session->start_date)->format('l, d M Y') }}

Attendance Recorded: {{ $att_count ?? '0'}} / {{ $session->total_student }}

Absent Students List

@if (is_null($absent_students) || $absent_students->isEmpty())

No records found for this class/session

@else @foreach($absent_students as $student) @endforeach
No. Name Student ID Class
{{ $loop->iteration }}. {{ $student->student_name }} {{ $student->student_id }} {{ $student->kelas }}
@endif
@endsection