{{-- Shared main navbar links. Pass $active = one of: colleges|departments|programs|plans|courses|teachers|roles --}}
@php
$active = $active ?? '';
$activeCls = 'bg-blue-600 text-white px-3 py-2 rounded-md text-sm font-medium shadow-sm';
$idleCls = 'text-slate-300 hover:bg-slate-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition-colors';
@endphp
@can_do('Colleges', 'view')
Colleges
@endcan_do
@can_do('Departments', 'view')
Departments
@endcan_do
@can_do('Programs', 'view')
Programs
@endcan_do
@can_do('Plans', 'view')
Plans
@endcan_do
@can_do('Plans', 'view')
Courses
@endcan_do
@if(!empty($currentTeacher))
My Courses
@endif
@can_do('Teachers', 'view')
Teachers
@endcan_do
@can_do('Roles', 'view')
Roles
@endcan_do