@extends('layouts.adminnav') @section('title', 'Admin Dashboard') @section('content')

Welcome to Admin Dashboard

Automobile Engineering Academy System Overview

System Active
@if(session('success')) @endif
My Courses

Manage

Active Slots

{{ $totalTimetableSlots ?? 0 }}

Results

Publish

Notifications

{{ $unreadNotifications ?? 0 }} New

System Notifications
{{ $unreadNotifications ?? 0 }} Unread
    @forelse($notifications ?? [] as $notification)
  • {{ $notification->title }}

    {{ $notification->message }}

    {{ $notification->created_at->diffForHumans() }}
    @if(!$notification->is_read)
    @csrf
    @endif
  • @empty
  • No notifications found.
  • @endforelse
@endsection