Showing {{ $courses->count() }} programmes
📚
No courses available
Check back soon for new programmes.
@foreach($courses as $course)
@php
$isArtisan = $course->type === 'artisan';
$gradient = $isArtisan ? 'from-amber-950 to-amber-700' : 'from-green-950 to-green-700';
$lc = strtolower($course->title);
$icon = match(true) {
str_contains($lc, 'business') => '📊',
str_contains($lc, 'information') || str_contains($lc, 'it') => '💻',
str_contains($lc, 'welding') => '🔧',
str_contains($lc, 'electrical') => '⚡',
str_contains($lc, 'building') || str_contains($lc, 'construct') => '🏗',
str_contains($lc, 'plumbing') => '🪛',
$isArtisan => '🔨',
default => '📋',
};
@endphp
{{ $icon }}
{{ $course->duration_weeks }}wks
{{ ucfirst($course->type) }}
{{ $course->title }}
{{ $course->description }}
{{ $course->duration_weeks }} Weeks
Duration
KES {{ number_format($course->fee) }}
Fee
→
@endforeach