@extends('layouts.app') @section('title', $program->title) @section('content') @include('layouts.partials.page_header', [ 'title' => $program->title, 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Programs', 'url' => route('programs.index')], ['label' => $program->title, 'url' => ''], ] ])
{{ ucfirst($program->degree_level) }} Program

{{ $program->title }}

{{ $program->description ?? 'Program details and guidance for international applicants.' }}

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

{{ $program->duration }}

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

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

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

Program Overview

{!! nl2br(e($program->description ?? 'This program is designed for international students seeking a practical, career-focused study path.')) !!}

@auth @if(auth()->user()->isStudent()) Start Application @else Request Guidance @endif @else Login to Apply @endauth Back to Programs

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

{{ $program->university->country->name ?? 'University' }}

@if($relatedPrograms->count())
Related Programs

More options from the same university

@foreach($relatedPrograms as $item)

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

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

{{ $item->title }}

{{ \Illuminate\Support\Str::limit($item->description ?? 'Program from the same university.', 110) }}

@endforeach
@endif
@endsection