@extends('layouts.app') @section('title', $university->name) @section('content') @include('layouts.partials.page_header', [ 'title' => $university->name, 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Universities', 'url' => route('universities.index')], ['label' => $university->name, 'url' => ''] ] ])
@if($university->logo_path) {{ $university->name }} @else @endif
@if($university->featured)

Featured

University

@endif
{{ $university->country->name }}

{{ $university->name }}

{{ $university->description ?? 'No description available.' }}

  • Location:

    {{ $university->location ?? 'N/A' }}

  • Ranking:

    #{{ $university->ranking }}

  • @if($university->website)
  • Website:

    {{ $university->website }}

  • @endif
@if($university->programs->count())

Programs Offered

@foreach($university->programs as $program)

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

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

{{ $program->title }}

  • {{ $program->duration }}

  • @if($program->application_deadline)
  • Deadline: {{ $program->application_deadline->format('M d, Y') }}

  • @endif
@endforeach
@endif @if($university->scholarships->count())

Scholarships at this university

@foreach($university->scholarships as $scholarship)

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

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

{{ $scholarship->title }}

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

@endforeach
@endif @endsection