@extends('../student_layout/' . $layout) @section('subhead') Exam Hall @endsection @section('subcontent')

Assigned Exams

All Assigned Exams
@if (count($assigned_exams) > 0)

Section Exams

@endif @foreach($assigned_exams as $row) @php $exam = App\Models\Exam::where('id', $row->exam_id)->first(); @endphp
{{$exam->title}}
{{--
Add variants such as color, size, or more. Choose a maximum of 2 variant types.
--}}
@endforeach @if (count($assigned_exit_exams) > 0)

Exit Exams

@endif @foreach($assigned_exit_exams as $row) @php $exam = App\Models\ExitExam::where('id', $row->exam_id)->first(); @endphp
{{$exam->title}} (Exit Exam)
{{--
Add variants such as color, size, or more. Choose a maximum of 2 variant types.
--}}
@endforeach
@endsection @section('script') {{-- --}} @endsection