@extends('layouts.contentLayoutMaster') @section('content') {!! Form::open(['route' => ['StudentAttendances.store',['class_id' => $class->id]],'method'=>'POST' , 'onsubmit' => 'showLoader()']) !!} {{ Form::hidden('class_id',$class->id)}}

تسجيل غياب الفصل : {{$class->class_name}}

@foreach($students as $student) @endforeach
رقم الطالب الأسم غائب سبب الغياب
{{ $student->id }}# {{ $student->student_name }}
@error('absent_date') {{ $message }} @enderror
{!! Form::close() !!}
@endsection