@extends('layouts.dashboard') @section('title', 'Applications') @section('page-content')

Applications

Manage student applications

Clear
@forelse($applications as $application) @empty @endforelse
Application # Name Email Program Status Date Actions
{{ $application->application_number }} {{ $application->first_name }} {{ $application->last_name }} {{ $application->email }} {{ $application->program->name }} {{ ucfirst($application->status) }} {{ $application->created_at->format('Y-m-d') }} View
No applications found
@if($applications->hasPages())
{{ $applications->links() }}
@endif @endsection