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

Exam

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