Course Verifications

Pending: {{ $stats['courseVerifications']['pending'] }} Total: {{ $stats['courseVerifications']['total'] }}

Approval Rate: {{ $stats['courseVerifications']['approval_rate'] }}%

@if (isset($stats['supervisedStudents']))

Supervised Students

{{ $stats['supervisedStudents']['current'] }} / {{ $stats['supervisedStudents']['quota'] }}

Available: {{ $stats['supervisedStudents']['available'] }}

@endif @if (isset($stats['committee']))

Committee Tasks

Placements: {{ $stats['committee']['pendingPlacementApplications'] }} Defers: {{ $stats['committee']['pendingDeferRequests'] }} Changes: {{ $stats['committee']['pendingChangeRequests'] }}
@endif @if (isset($stats['coordinator']))

Coordinator Tasks

Approvals: {{ $stats['coordinator']['pendingPlacementApprovals'] + $stats['coordinator']['pendingDeferApprovals'] + $stats['coordinator']['pendingChangeRequests'] }} Unassigned: {{ $stats['coordinator']['unassignedStudents'] }}
@endif @if (isset($stats['academicAdvisor']))

Academic Advisor

{{ $stats['academicAdvisor']['adviseeCount'] }} Students

@if(isset($stats['academicAdvisor']['pendingCourseVerifications']))

Pending Reviews: {{ $stats['academicAdvisor']['pendingCourseVerifications'] }}

@endif
@endif

Pending Tasks

@if ($pendingTasks->isEmpty())

No pending tasks

@else
@foreach ($pendingTasks as $task)

{{ $task['title'] }}

{{ $task['description'] }}

{{ is_string($task['date']) ? \Carbon\Carbon::parse($task['date'])->format('M d, Y') : $task['date']->format('M d, Y') }}

View
@endforeach
@if ($pendingTasks->hasPages())
Showing {{ $pendingTasks->firstItem() }} to {{ $pendingTasks->lastItem() }} of {{ $pendingTasks->total() }} tasks
@if ($pendingTasks->onFirstPage()) Previous @else @endif Page {{ $pendingTasks->currentPage() }} of {{ $pendingTasks->lastPage() }} @if ($pendingTasks->hasMorePages()) @else Next @endif
@endif @endif
@if (isset($advisees) && $advisees->isNotEmpty())

My Advisees

@foreach ($advisees as $item)

{{ $item['student']->user->name }}

{{ $item['student']->studentID }}

@if ($item['student']->program)

Program: {{ $item['student']->program }}

@endif @if ($item['latestVerification'])

Latest Verification: {{ $item['latestVerification']->academicAdvisorStatus ? ucfirst($item['latestVerification']->academicAdvisorStatus) : 'Pending' }}

@endif
@endforeach
@if ($advisees->hasPages())
Showing {{ $advisees->firstItem() }} to {{ $advisees->lastItem() }} of {{ $advisees->total() }} advisees
@if ($advisees->onFirstPage()) Previous @else @endif Page {{ $advisees->currentPage() }} of {{ $advisees->lastPage() }} @if ($advisees->hasMorePages()) @else Next @endif
@endif
@endif @if ($supervisedStudents->isNotEmpty())

My Supervised Students

@foreach ($supervisedStudents as $item)

{{ $item['student']->user->name }}

{{ $item['student']->studentID }}

@if ($item['placement'])

Company: {{ $item['placement']->companyName }}

Status: {{ $item['status'] }}

@else

Pending Placement

@endif
@endforeach
@if ($supervisedStudents->hasPages())
Showing {{ $supervisedStudents->firstItem() }} to {{ $supervisedStudents->lastItem() }} of {{ $supervisedStudents->total() }} students
@if ($supervisedStudents->onFirstPage()) Previous @else @endif Page {{ $supervisedStudents->currentPage() }} of {{ $supervisedStudents->lastPage() }} @if ($supervisedStudents->hasMorePages()) @else Next @endif
@endif
@endif

Recent Activity

@if ($recentActivities->isEmpty())

No recent activity

@else
@foreach ($recentActivities as $activity)

{{ $activity['title'] }}

{{ $activity['description'] }}

{{ is_string($activity['date']) ? \Carbon\Carbon::parse($activity['date'])->diffForHumans() : $activity['date']->diffForHumans() }}

@if ($activity['link']) View @endif
@endforeach
@if ($recentActivities->hasPages())
Showing {{ $recentActivities->firstItem() }} to {{ $recentActivities->lastItem() }} of {{ $recentActivities->total() }} activities
@if ($recentActivities->onFirstPage()) @else @endif
{{ $recentActivities->currentPage() }} / {{ $recentActivities->lastPage() }}
@if ($recentActivities->hasMorePages()) @else @endif
@endif @endif
@if ($showStudentModal && $selectedStudent)

Student Details

Basic Information

Student ID

{{ $selectedStudent->studentID }}

Name

{{ $selectedStudent->user->name }}

Email

{{ $selectedStudent->user->email }}

@if($selectedStudent->program)

Program

{{ $selectedStudent->program }}

@endif @if($selectedStudent->semester)

Semester

{{ $selectedStudent->semester }}

@endif @if($selectedStudent->year)

Year

{{ $selectedStudent->year }}

@endif @if($selectedStudent->phone)

Phone

{{ $selectedStudent->phone }}

@endif @if($selectedStudent->status)

Status

{{ ucfirst($selectedStudent->status) }}

@endif
@if($selectedStudent->academicAdvisor)

Academic Advisor

{{ $selectedStudent->academicAdvisor->user->name ?? $selectedStudent->academicAdvisorID }}

@endif @if($selectedStudent->supervisorAssignments->isNotEmpty())

Supervisor

@foreach($selectedStudent->supervisorAssignments->where('status', 'Assigned') as $assignment)

{{ $assignment->supervisor->user->name ?? $assignment->supervisorID }}

@endforeach
@endif @if($selectedStudent->courseVerifications->isNotEmpty())

Recent Course Verifications

@foreach($selectedStudent->courseVerifications as $verification)
{{ $verification->applicationDate->format('M d, Y') }} - {{ $verification->currentCredit }} credits {{ $verification->academicAdvisorStatus ? ucfirst($verification->academicAdvisorStatus) : 'Pending' }}
@endforeach
@endif @if($selectedStudent->placementApplications->isNotEmpty())

Recent Placement Applications

@foreach($selectedStudent->placementApplications as $application)

{{ $application->companyName }}

{{ $application->applicationDate->format('M d, Y') }} - Status: {{ ucfirst($application->overall_status ?? 'Pending') }}

@endforeach
@endif
@endif