@extends('site.layout') @section('title') {{ label('lbl_site_title') }} - {{ label('lbl_home') }} @endsection @section('css-content') @endsection @section('content')
@if(count($slideshow))
@endif

{{ label('lbl_explore_our_courses') }}

@if(count($services))
@foreach($services as $service)
{{ strip_tags($service->title) }}
{!! str_limit(strip_tags($service->title), 60) !!}

{!! str_limit(strip_tags($service->content), 230) !!}

@endforeach
@endif
@if(count($program_categories))

{{label('lbl_we_offer')}}

@foreach($program_categories as $key => $category)

{!! str_limit(strip_tags($category->title), 230) !!}

{!! str_limit(strip_tags($category->content), 230) !!}

@endforeach
@endif
@if ($about)
{{ label('lbl_vision') }}
{!! strip_tags($about->vision) !!}
{{ label('lbl_mission') }}
{!! strip_tags($about->mission) !!}
{{label('lbl_motto')}}
{!! strip_tags($about->motto) !!}
@endif
@if ($dg || $welcome)

{{ label('lbl_school_leadership')}}

@if($dg)
{{$dg->title}} Photo
{{ $dg->salutation . ' ' . $dg->fullname }}
{!! $dg->title !!}
@endif

{!! str_limit(strip_tags(string: $welcome->content), 270) !!}

@endif

{{label('lbl_events')}}

@if (count(value: $recent_events)) @foreach($recent_events as $key => $event) @endforeach @endif

{{label('lbl_announcements')}}

@foreach($recent_announcements as $key => $announcement)
{!! date('d M', strtotime($announcement->created_at)) !!}
{!! date('Y', strtotime($announcement->created_at)) !!}
{!! str_limit(strip_tags($announcement->content), 120) !!}
{{str_limit($announcement->name, 30)}}
@endforeach

{{label('lbl_latest_news')}}

@if (count($facilities))

{{ label('lbl_our_facilities') }}

@endif

{{label('lbl_get_answer')}}

@foreach($faqs as $key => $faq)
{!! strip_tags($faq->answer) !!}
@endforeach

{{label('lbl_have_questions')}}

{{label('lbl_contact')}}

@include('site.complaints.complain_form')
@if (count($testimonials))

{{label('lbl_quotes_from_leaders')}}

@endif @if(count($highlights))
@foreach ($highlights as $key=>$highlight)
{{$highlight->title}}
@endforeach
@endif @stop @section('js-content') @endsection