@extends('layouts.app') @section('content') @include('layouts.navbars.auth.topnav', ['title' => $title])

Exam List

@foreach ($exams as $item) @endforeach
# Title Subject Pass Score Duration Status Action
{{ $loop->iteration }} {{ $item->exam_title ?? '' }} {{ $item->subject->subject_name ?? '' }} {{ $item->passing_score ?? '' }} {{ $item->duration ?? '' }} @if ($item->status == 'R') Running @elseif ($item->status == 'D') Done @elseif ($item->status == 'P') Pending @endif @if ($item->is_submitted) View Result @else Take Exam @endif
@endsection @push('scripts') @endpush