@extends('theme.layout') @section('title', "Consultant Posts") @section('page_name', "Scholarship Posts") @push('styles') @endpush @section('content')
Latest Opportunities

Explore Scholarships

Discover fully-funded opportunities and take the first step toward your academic journey.

@if($data && count($data) > 0)
@foreach($data as $index => $post)

{{ $post->title ?? 'Untitled Post' }}

{{ $post->consultant->name ?? 'Consultant' }} {{ $post->country->name ?? 'International' }}

{{ $post->body ? Str::limit(strip_tags($post->body), 140) : 'No description available.' }}

@endforeach
@else

No Scholarships Found

There are no scholarship posts available at the moment. Please check back later.

@endif
@endsection @push('scripts') @endpush