@extends('layouts.frontend') @section('title', 'Study Destinations - Trade Plus Education') @section('meta_description', 'Explore top study abroad destinations including Korea, USA, Germany, and Australia. Find the perfect country for your higher education journey.') @section('content')

Study Destinations

Choose from world-class education destinations

@forelse($destinations as $destination)
@if($destination->image)
{{ $destination->country_name_en }}
@if($destination->flag_emoji)
{{ $destination->flag_emoji }}
@endif @if($destination->is_featured)
Featured
@endif
@endif

{{ $destination->country_name_en }}

{{ Str::limit($destination->description_en, 120) }}

@if($destination->visa_processing_time)
Visa: {{ $destination->visa_processing_time }}
@endif @if($destination->popular_courses)
@foreach(explode(',', $destination->popular_courses) as $course) {{ trim($course) }} @endforeach
@endif Explore {{ $destination->country_name_en }}
@empty

No destinations available at the moment.

@endforelse

Can't Decide Where to Study?

Let our expert counselors help you choose the best destination for your goals

@endsection