Explore Our Courses

Programs Offered by DataTrained

    @php $course_categories = DB::table('course_categories')->where('id', '!=', 11)->where('active', 1)->orderBy('seq', 'asc')->get(); $count = 1; @endphp @foreach($course_categories as $r) @if(DB::table('courses')->where('active', 1)->where('category', $r->id)->count() > 0)
  • {{ $r->name }}
  • @endif @endforeach
@php $count = 1; @endphp @foreach($course_categories as $r) @if(DB::table('courses')->where('active', 1)->where('category', $r->id)->count() > 0)

{{ $r->name }}

@php $courses = DB::table('courses')->where('category', $r->id)->where('type', '!=', 5)->where('active', 1)->orderBy('type', 'desc')->get(); @endphp @foreach($courses as $r2) @php $partner = DB::table('partners')->where('id', $r2->partner)->first(); @endphp @endforeach
@endif @endforeach