@extends('dashboard.master') @section('title', 'Teacher Attendance Edit') @push('css') @endpush @section('content')
Teacher Attendance Edit
@csrf @method('PUT')
@foreach ($teachers as $teacher) @endforeach
হাজিরা তারিখ:
সকল শিক্ষকের জন্য উপস্থিতি নির্ধারণ করুন: @foreach(['present' => 'সব উপস্থিত', 'late' => 'সব দেরিতে উপস্থিতি', 'absent' => 'সব অনুপস্থিত', 'holiday' => 'সব ছুটি', 'halfday' => 'অর্ধদিবস ছুটি'] as $key => $label)
@endforeach
# নাম রেজিস্ট্রেশন নম্বর উপস্থিতি
{{ $loop->iteration }} {{ $teacher->teacher->name ?? '' }}
{{ $teacher->teacher->phone ?? '' }}
{{ $teacher->teacher->reg_no ?? '' }}
@php $statuses = [1 => 'উপস্থিত', 2 => 'অনুপস্থিত', 3 => 'বিলম্বিত', 4 => 'ছুটি', 5 => 'অর্ধ দিবস']; @endphp @foreach($statuses as $value => $label) @php $id = "status_{$label}_{$teacher->id}"; @endphp
status == $value ? 'checked' : '' }}>
@endforeach
@endsection @push('js') @endpush