@extends('website.includes.layout') @section('meta_title', $cms->meta_title ?? '') @section('meta_keyword', $cms->meta_keyword ?? '') @section('meta_description', $cms->meta_description ?? '') @section('image', $cms->image ?? '') @section('content') @include('website.sections.breadcumb', ['heading' => $cms->heading, 'pagename' => $cms->pagename, 'breadcumb_image' => showImage($cms->image ?? '', $cms->image_webp ?? '') ] ) @if(!empty($cms))

{{ $cms->heading ?? '' }}

{{ $cms->short_description ?? '' }}

{!! $cms->description ?? '' !!}
{{ $cms->heading ?? '' }}
@endif @if(!empty($counters) && $counters->count() > 0) @include('website.sections.counter', ['counters' => $counters]) @endif @if(!empty($teams) && $teams->count() > 0)
@foreach($teams as $index => $item)
@if($index % 2 == 0)
{{ $item->name ?? '' }}

{{ $item->name ?? '' }}

{{ $item->designation ?? '' }}
@if(!empty($item->description))

{!! $item->description !!}

@endif
@else

{{ $item->name ?? '' }}

{{ $item->designation ?? '' }}
@if(!empty($item->description))

{!! $item->description !!}

@endif
{{ $item->name ?? '' }}
@endif
@endforeach
@endif @if(!empty($course_category))

{!! $home_settings->course_heading ?? '' !!}

{{-- TAB HEADINGS --}}
@foreach($course_category as $key => $cat)
@if(!empty($course_by_category[$cat->id]) && count($course_by_category[$cat->id]) > 0) @foreach($course_by_category[$cat->id] as $item)

{{ $item->course_name }}

{{ $item->short_description ?? '' }}

@endforeach @else

No courses available in this category.

@endif
@endforeach
@endif @if(!empty($banner)) @include('website.sections.banner', ['banner' => $banner]) @endif @endsection