@extends('layouts.adminapp')
@section('content')
{{-- Exam --}}
Exam
| Si No |
Title |
Category |
Active |
Narration |
Actions |
@php $si = 0; @endphp
@foreach ($Exams as $Exam)
|
{{ ++$si }}
|
{{ $Exam->title }}
|
{{ $Exam->examcategory->title }}
|
@if ($Exam->active == 0)
❌
@elseif($Exam->active == 1)
✅
@endif
|
{{ $Exam->narration }}
|
|
@endforeach
{{--
Showing {{ $Exams->count() }}
--}}
@endsection