@if($isAcademicAdvisor) Pending Review @else Pending Review @endif

{{ $pendingApplications }}

Total Applications

{{ $totalApplications }}

@if($isAcademicAdvisor) Eligible @else Approved @endif

{{ $approvedApplications }}

@if($isAcademicAdvisor) Ineligible @else Rejected @endif

{{ $rejectedApplications }}

@if (session()->has('message')) @endif @if (session()->has('error')) @endif
@if (count($selectedApplications) > 0)
{{ count($selectedApplications) }} application(s) selected
@endif
@forelse($applications as $application) @empty @endforelse
Current Credit Actions
@if($isAcademicAdvisor) @if ($application->academicAdvisorStatus === null) @else @endif @else @if ($application->status === 'pending' && $application->academicAdvisorStatus === 'approved') @else @endif @endif {{ $application->courseVerificationID }} {{ $application->studentID }} {{ $application->student->user->name ?? 'N/A' }} {{ $application->currentCredit }} / 130 @if($isAcademicAdvisor) @php $statusClasses = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'approved' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', ]; $displayStatus = $application->academicAdvisorStatus ?? 'pending'; $statusLabels = [ 'pending' => 'Pending Review', 'approved' => 'Marked as Eligible', 'rejected' => 'Marked as Ineligible', ]; @endphp {{ $statusLabels[$displayStatus] ?? 'Unknown' }} @else @php $statusClasses = [ 'pending' => 'bg-yellow-100 text-yellow-800', 'approved' => 'bg-green-100 text-green-800', 'rejected' => 'bg-red-100 text-red-800', ]; @endphp {{ ucfirst($application->status) }} @if($application->academicAdvisorStatus === 'approved') AA ✓ @endif @endif {{ $application->applicationDate->format('M d, Y') }}
@if ($application->files->count() > 0) @endif

No applications found

Applications will appear here when students submit them.

{{ $applications->links() }}
@if ($showDetailModal && $selectedApplication) @endif