@extends('layouts.studentportalnav') @section('title', 'Student Dashboard') @section('content')
Active Academic Year 2026 {{ date('l, F j, Y') }}

Welcome Back, {{ Auth::check() ? Auth::user()->first_name : 'Student' }}! 👋

Manage your academic activities, course schedules, and exam performance directly from your portal dashboard.

@if(Auth::check())
{{ strtoupper(substr(Auth::user()->first_name, 0, 1)) }}
{{ Auth::user()->first_name }} {{ Auth::user()->last_name }}
{{ Auth::user()->email }}
@endif
Active
6
Enrolled Courses
Pending
3
Assignments Due
Grade B+
78%
Average Result
Upcoming
2
Exam Notices
System Notifications
{{ $unreadNotifications ?? 0 }} Unread
    @forelse($notifications ?? [] as $notification)
  • {{-- Type Badge --}} @if($notification->type == 'success') Success @elseif($notification->type == 'warning') Warning @else Info @endif
    {{ $notification->title }}

    {{ $notification->message }}

    {{ $notification->created_at->diffForHumans() }}
    {{-- Mark as Read Button --}} @if(!$notification->is_read)
    @csrf
    @else @endif
  • @empty
  • No notifications found.
  • @endforelse
Student Services & Quick Actions
Official Academic Documents (PDF)
@endsection