@extends('layouts.app') @section('title', 'Study Countries') @section('content') @include('layouts.partials.page_header', [ 'title' => 'Explore Study Destinations', 'showSocial' => false, 'breadcrumbs' => [ ['label' => 'Home', 'url' => route('home')], ['label' => 'Countries', 'url' => ''], ], ])
@forelse($countries as $country)
@if($country->flag_path) {{ $country->name }} @else
{{ \Illuminate\Support\Str::substr($country->name, 0, 2) }}
@endif

{{ $country->universities_count }} Universities

@if($country->is_popular)

Popular

@endif

{{ $country->name }}

{{ \Illuminate\Support\Str::limit($country->description ?? ('Discover study opportunities in ' . $country->name . '.'), 90) }}

  • {{ $country->universities_count }} Universities

  • {{ $country->scholarships_count }} Scholarships

@empty

No countries found.

Try a different search term or clear the popular filter.

@endforelse
{{ $countries->appends(request()->query())->links('vendor.pagination.custom') }}
@endsection