@extends('layouts.app') @section('title', $scholarship->title) @section('content') @include('layouts.partials.page_header', [ 'title' => $scholarship->title, 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Scholarships', 'url' => route('scholarships.index')], ['label' => $scholarship->title, 'url' => ''], ] ])
{{ $scholarship->scholarship_type ?? ucfirst($scholarship->program_level) }}

{{ $scholarship->title }}

{{ $scholarship->meta_description ?? 'Scholarship support for students looking to study at a partner university.' }}

{{ $scholarship->is_fully_funded ? 'Fully Funded' : '$'.number_format((float) $scholarship->amount) }}

{{ ucfirst($scholarship->program_level) }}

  • {{ $scholarship->country->name ?? 'Country' }}

  • {{ $scholarship->deadline?->format('M d, Y') }}

  • {{ $scholarship->scholarship_type ?? 'Scholarship' }}

About this scholarship

{!! nl2br(e($scholarship->description)) !!}

Eligibility

{!! nl2br(e($scholarship->eligibility)) !!}

@if($scholarship->exams->count())

Required Exams

@foreach($scholarship->exams as $exam) {{ $exam->name }}@if($exam->pivot?->minimum_score) - Min {{ $exam->pivot->minimum_score }}@endif @endforeach
@endif @if($scholarship->university)

{{ $scholarship->university->name }}

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

{{ \Illuminate\Support\Str::limit($scholarship->university->description ?? 'Partner university profile and program options.', 180) }}

@endif
@auth @if(auth()->user()->isStudent() && $applicationProgram) Apply With This University @else Book Consultation @endif @else Login to Apply @endauth Back to Scholarships

Need Help Applying?

We can help with eligibility, documents, and university selection.

@if($related->count())
Related Scholarships

More funding options

@foreach($related as $item)

{{ $item->is_fully_funded ? 'Fully Funded' : '$'.number_format((float) $item->amount) }}

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

{{ $item->title }}

{{ \Illuminate\Support\Str::limit($item->meta_description ?? $item->description, 120) }}

@endforeach
@endif
@endsection