@extends('layouts.app') @section('title', 'Exams') @section('content') @include('layouts.partials.page_header', [ 'title' => 'Exams', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Exams', 'url' => ''], ] ])
@include('exams.partials.sidebar')
@include('exams.partials.topbar')
@forelse($exams as $exam)

{{ $exam->code }}

{{ ucfirst($exam->type) }}

{{ $exam->name }}

{{ \Illuminate\Support\Str::limit($exam->short_description ?? '', 120) }}

  • {{ $exam->duration ? $exam->duration.' min' : 'Flexible' }}

  • {{ $exam->validity_months ? $exam->validity_months.' months' : 'No expiry' }}

  • {{ $exam->views }} views

@empty

No exams found.

@endforelse
{{ $exams->appends(request()->except('page'))->links('vendor.pagination.custom') }}
@endsection