@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->display_name ?? $cms->heading ?? '', 'pagename' => $cms->display_name ?? $cms->heading ?? '', 'breadcumb_image' => showImage($bg->image ?? '', $bg->image_webp ?? '') ])
@if (!empty($cms->image))
{{ $cms->heading ?? '' }}
@endif

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

{!! $cms->description ?? '' !!}
@php $faqs = $cms->faqs ?? []; @endphp @if (!empty($faqs))

Frequently Asked Questions

@foreach($faqs as $index => $faq) @php $faqId = 'faq-' . $index; $collapseId = 'collapse-' . $index; $isFirst = $index === 0; @endphp

{!! $faq['answer'] ?? '' !!}
@endforeach
@endif @if(!empty($course_category))

Related Course Categories

@foreach ($course_category as $value)
{{ $value->category_name ?? '' }}

{{ $value->category_name ?? '' }}

{!! substr(strip_tags($value->description ?? ''), 0, 255) . '...' !!}

@endforeach
@endif @if(!empty($counters)) @include('website.sections.counter', ['counters' => $counters]) @endif @if(!empty($why_us))

Why Choose US

ACS is an initiative by the team of ex-Niftians, alumni’s and experienced professors...

@foreach ($why_us as $value )
{{ $value->heading ?? '' }}

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

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

@endforeach
@endif @if(!empty($awards))

Top Awards

@foreach ($awards as $value)
{{ $value->name ?? ''}}

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

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

@endforeach
@endif @if(!empty($who_us))

Who Choose US

ACS is an initiative by the team of ex-Niftians, alumni’s and experienced professors...

@foreach ($who_us as $index => $item)
{{ $item->heading ?? '' }}

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

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

@endforeach
@endif @if(!empty($results))

Top Rankers

Meet our shining achievers

@endif @if(!empty($gallery))

ACS Gallery

@endif @if(!empty($testimonials))

What Students Say

@foreach($testimonials as $testi) {{-- VIDEO TYPE --}} @if($testi->type == 'Video')
{{ $testi->name ?? '' }}

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

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

{{-- IMAGE TYPE --}} @elseif($testi->type == 'Image')
{{ $testi->name ?? '' }}

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

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

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