@extends('layouts.app') @section('content') {{-- Google Fonts --}} @push('styles') @endpush
Tip: Please ensure that all your courses for the entire semester have been successfully registered.
@php $tiles = [ ['title' => 'Semester Registration', 'desc' => 'Register for the current semester.', 'btn' => 'Start Registration', 'route' => 'student.registration', 'bg' => '#FFA500', 'btnclass' => 'btn-success'], ['title' => 'Registered Programme', 'desc' => 'View your registered programme details.', 'btn' => 'View Programme', 'route' => 'student.programmes', 'bg' => '#007bff', 'btnclass' => 'btn-outline-light'], ['title' => 'My Results', 'desc' => 'Check your exam results.', 'btn' => 'View Results', 'route' => 'student.results', 'bg' => '#FFD700', 'btnclass' => 'btn-success'], ['title' => 'Fees Balance', 'desc' => 'View your current balance.', 'btn' => '$0.00 → View Statement', 'route' => 'student.statement', 'bg' => '#FF6347', 'btnclass' => 'btn-danger'], ['title' => 'Coursework', 'desc' => 'Track your coursework.', 'btn' => 'View Coursework', 'route' => 'student.coursework', 'bg' => '#20B2AA', 'btnclass' => 'btn-primary'], ['title' => 'My Courses', 'desc' => 'See registered modules.', 'btn' => 'View Courses', 'route' => 'student.courses', 'bg' => '#5bc0de', 'btnclass' => 'btn-info'], ['title' => 'Notices', 'desc' => 'Latest announcements.', 'btn' => 'View Notices', 'route' => 'student.notices', 'bg' => '#9370DB', 'btnclass' => 'btn-light'], ['title' => 'Timetable', 'desc' => 'Class and exam schedule.', 'btn' => 'View Timetable', 'route' => 'student.timetable', 'bg' => '#6f42c1', 'btnclass' => 'btn-warning'], ['title' => 'Accommodation', 'desc' => 'Manage room details.', 'btn' => 'Manage Room', 'route' => 'student.accommodation', 'bg' => '#28a745', 'btnclass' => 'btn-dark'], ['title' => 'Downloads', 'desc' => 'Access files & forms.', 'btn' => 'Go to Downloads', 'route' => 'student.downloads', 'bg' => '#17a2b8', 'btnclass' => 'btn-outline-light'], ]; @endphp @foreach ($tiles as $tile)
{{ $tile['title'] }}

{{ $tile['desc'] }}

{{ $tile['btn'] }}
@endforeach

Logged in as {{ Auth::user()->name }} ({{ Auth::user()->email }})

@endsection