@yield('styles')
Home
The Academy
The Courses
@php $theCourses = \App\Models\Course::where('status', 1)->orderBy('rank', 'ASC')->get(); @endphp @foreach($theCourses as $theCourse) @php $theCourseOutlines = $theCourse->courseOutlines()->where('status', 1)->where('for_enrolled_only', 0)->orderBy('rank', 'ASC')->get(); @endphp
{!! $theCourse->name !!}
@if(count($theCourseOutlines))
@foreach($theCourseOutlines as $theCourseOutline) @php $theLessons = $theCourseOutline->lessonsWithTopics()->get(); @endphp
{!! $theCourseOutline->description !!}
@if(count($theLessons))
@foreach($theLessons as $theLesson)
{!! $theLesson->name !!}
@endforeach
@endif
@endforeach
@endif
@endforeach
Training Calendar
Year 2023
September Training
Team One
Year 2024
January Training
April Training
September Training
Year 2025
February Training
May Training
August Training
Contact
@guest
Login
@else
Dashboard
@endif
@yield('content')
@yield('scripts')