@extends('frontend.layouts.master') @push("css") @endpush @section('content') @include('frontend.partials.breadcrumb') @include('frontend.partials.events', compact('recent_events','events','categories')) @foreach ($page_section->sections ?? [] as $item) @if ($item->section->key == 'home-banner') @include('frontend.partials.banner-section') @elseif ($item->section->key == 'about-section') @include('frontend.partials.about') @elseif ($item->section->key == 'testimonial-section') @include('frontend.partials.testimonial') @elseif ($item->section->key == 'top-partner-section') @include('frontend.partials.brand') @elseif ($item->section->key == 'video-section') @include('frontend.partials.video-section') @elseif ($item->section->key == 'download-app') @include('frontend.partials.download-section') @elseif ($item->section->key == 'contact') @include('frontend.partials.contact-section') @endif @endforeach @endsection