{{-- ====================================================== COURSES SECTION — fully dynamic from DB $courses is passed from the home route in web.php ====================================================== --}}
{{-- Section Header --}}
Our Programs

Popular Courses

Industry-recognised certifications designed to launch your international caregiving career

{{-- Courses Grid --}} @if($courses->isEmpty())

No courses available yet. Check back soon!

@else
@foreach($courses as $i => $course)
{{-- Course Image / Brand Banner --}}
@if($course->featured_image && file_exists(public_path('uploads/courses/'.$course->featured_image))) {{ $course->title }}
@else
@endif {{-- Badges --}}
@if($course->duration) {{ $course->duration }} @endif @if($course->certification) {{ $course->certification }} @endif
@if($course->is_featured)
Most Popular
@endif
{{-- Card Body --}}

{{ $course->title }}

{{ Str::limit($course->short_description, 130) }}

{{-- Course Details --}}
Starting:  {{ $course->formatted_starting_date }}
@if($course->mode)
{{ $course->mode }}
@endif @if($course->max_students)
Limited to {{ $course->max_students }} students
@endif
{{-- Action Buttons --}}
@endforeach
{{-- View All Courses Button --}} @endif