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