@php
$exam = $seat_plan->exam;
if($i == 1){
echo $exam->name;
}
@endphp
|
@php
$exam = $seat_plan->exam;
if($i == 1){
echo dateConvert($seat_plan->date);
}
@endphp
|
@php
$subject = $seat_plan->subject;
if($i == 1){
echo date('h:i a', strtotime($seat_plan_child->start_time)).'-'.date('h:i a', strtotime($seat_plan_child->end_time));
}
@endphp
|
@php
$subject = $seat_plan->subject;
if($i == 1){
echo $subject->subject_name;
}
@endphp
|
@php
$class = $seat_plan->class;
$section = $seat_plan->section;
if($i == 1){
echo $class->class_name.' ('.$section->section_name.')';
}
@endphp
|
@php
if($i == 1){
echo App\SmSeatPlan::total_student($seat_plan->class_id, $seat_plan->section_id);
}
@endphp
|
@php $class_room = $seat_plan_child->class_room; echo $class_room->room_no; @endphp |
{{$class_room->capacity}} |
{{$seat_plan_child->assign_students}} |
@endforeach
@endforeach