@extends('dashboard.master') @section('title', 'Student Attendance Edit') @push('css') @endpush @section('content')
Student Attendance Edit
@csrf @method('PUT')
@if (session('error'))
{{ session('error') }}
@endif

Set attendance for all students as:

@foreach ($students as $student) @endforeach
# Name Reg No Attendance
{{ $loop->iteration }} {{ $student->students->name }}
{{ $student->students->roll_no ?? '' }}
{{ $student->students->register_no ?? '' }}
@php $statuses = [1 => 'Present', 2 => 'Absent', 3 => 'Late', 4 => 'Holiday', 5 => 'Half Day']; @endphp @foreach($statuses as $value => $label) @php $id = "status_{$label}_{$student->id}"; @endphp
status == $value ? 'checked' : '' }}>
@endforeach
@push('js') @endpush @endsection