@extends('layouts.adminapp') @section('content') {{-- Exam Category --}}

Exam Category

Add New

Exam Category

@php $si = 0; @endphp @foreach ($ExamCategories as $ExamCategory) @endforeach
Si No Title Active Narration Actions
{{ ++$si }} {{ $ExamCategory->title }} @if ($ExamCategory->active == 0) ❌ @elseif($ExamCategory->active == 1) ✅ @endif {{ $ExamCategory->narration }}
@csrf @method('delete')
@endsection