@extends('layouts.main_dashboard.app') @section('styles') @endsection @section('title', __('dashboard.Edit Attendance Record')) @section('page_heading', __('dashboard.Edit Attendance Record')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.Back') }} @endsection @section('content')

{{ __('dashboard.Edit Attendance Record') }}

@csrf @method('PUT')
@php $absentStudentIds = $attendanceRecord->absentStudents->pluck('student_id')->all(); @endphp @foreach($students->chunk(3) as $chunk) @foreach($chunk as $student) @endforeach @endforeach
id, $absentStudentIds) ? 'checked' : '' }}/>
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection