@extends('layouts.app') @section('title', 'Programs') @section('content') @include('layouts.partials.page_header', [ 'title' => 'Programs', 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Programs', 'url' => ''], ] ])

Country

Need Help Choosing?

We can help you match a program to your budget and goals.

Showing {{ $programs->firstItem() ?? 0 }} - {{ $programs->lastItem() ?? 0 }} of {{ $programs->total() }} programs

Sort by:

@forelse($programs as $program)

${{ number_format((float) $program->fee) }}

{{ ucfirst($program->degree_level) }}

{{ $program->title }}

{{ \Illuminate\Support\Str::limit($program->description ?? 'Study pathway at '.$program->university->name, 120) }}

  • {{ $program->university->name }}

  • {{ $program->university->country->name ?? 'Country' }}

  • {{ $program->application_deadline?->format('M d, Y') ?? 'Open' }}

@empty

No programs found.

@endforelse
{{ $programs->appends(request()->except('page'))->links('vendor.pagination.custom') }}
@endsection @push('scripts') @endpush