@extends('schoolLayout.app') @section('content') @if (session('error')) @endif @if (session('success')) @endif
@if ($all_exams) @foreach ($all_exams as $exam) @endforeach @endif
Exam Title Exam Type Notes Actions
{{ $exam->title }} {{ $exam->type }} {{ Str::limit($exam->notes, 30) }}
{{-- Edit modal --}} @endsection