@extends('backend.student.layouts.right_side_bar') @section('studentBody')
@include('layouts.message')

{{$heading}} Back

"This is the set of exam that you can appear now! You can re-appear for next set of exam in few Days."
@foreach($terms as $term)
{{$term->name}}
Start Date: {{$term->start_date}}
End Date : {{$term->end_date}}
@php $actionUrl = url('student/exam_section/scholarship'.'/'.$term->client_id.'/'.$term->semester->stream->exam->slug.'/'.$term->semester->stream->slug); @endphp @if ($studentTerm = \App\OnlineExam\StudentTerm::where('student_id',$student->id)->where('term_id',$term->id)->first()) @if($studentTerm->status=='pending') Continue Exam Set @else View Result of this exam Set @endif @else Start Exam Set @endif
@endforeach
@endsection