@php // Real published courses feed the Learn megamenu (Investable is featured separately). $navCourses = \App\Models\Course::query() ->where('is_published', true) ->where('slug', '!=', 'investable') ->orderBy('sort') ->take(3) ->get(['title', 'slug', 'level']); @endphp