@extends('web.master') @section('content')
@if ($about)
{{ isset($about->tag) ? $about->tag : '' }} {{ isset($about->heading) ? $about->heading : '' }} {{ isset($about->content) ? $about->content : '' }}
@endif @if ($program)
{{ isset($program->tag) ? $program->tag : 'Educational Programs' }} {{ isset($program->heading) ? $program->heading : 'Educational Programs for every Stage' }} {{ isset($program->content) ? $program->content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." }}
@if (isset($eprograms)) @foreach ($eprograms as $item)
...
{{ $item->title }}
@endforeach @else
...
Pre-primary School
...
Primary School
...
Secondary School
...
Higher Secondary School
@endif
notesImg bulbImg
@endif @if ($event)
{{ isset($event->tag) ? $event->tag : 'Our Events and News' }} {{ isset($event->heading) ? $event->heading : "Don't Miss the Biggest Events and News of the Year!" }} {{ isset($event->content) ? $event->content : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' }}
@if (isset($news)) @foreach ($news as $item)
{{ $item->title }}

@if ($item->date) {{ date('d M, Y', strtotime($item->date)) }} @else @if ($item->end_date) {{ date('d M, Y', strtotime($item->start_date)) . ' To ' . date('d M, Y', strtotime($item->end_date)) }} @else {{ date('d M, Y', strtotime($item->start_date)) }} @endif @endif
{{ $item->description }} {{ __('view_details') }}
@endforeach @endif
@endif @if ($photo)
{{ isset($photo->tag) ? $photo->tag : 'Our Photos' }} {{ isset($photo->heading) ? $photo->heading : ' Capturing Memories, Building Dreams' }} {{ isset($photo->content) ? $photo->content : "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." }}
@endif @if ($video)
{{ isset($video->tag) ? $video->tag : 'Our Videos' }} {{ isset($video->heading) ? $video->heading : 'Rewind, Replay, Rejoice! Dive into Our Video Vault' }} {{ isset($video->content) ? $video->content : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' }}
@endif @if ($faq)
{{ isset($faq->tag) ? $faq->tag : "FAQ'S" }} {{ isset($faq->heading) ? $faq->heading : "Got Questions? We've Got Answers! Dive into Our FAQs" }} {{ isset($faq->content) ? $faq->content : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' }}
@if (isset($faqs)) @foreach ($faqs as $item)

{{ $item->answer }}
@endforeach @endif
@endif @if ($app)
{{ isset($app->tag) ? $app->tag : 'Download Our School Apps!' }} {{ isset($app->heading) ? $app->heading : 'Empower Everyone: Teachers, Students, Parents - Get the App Now!' }} {{ isset($app->content) ? $app->content : 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.' }}
... {{ __('student_parent_app') }} {{ __('android_demo') }}
... {{ __('student_parent_app') }} {{ __('ios_demo') }}
... {{ __('teacher_app') }} {{ __('android_demo') }}
... {{ __('teacher_app') }} {{ __('ios_demo') }}
@endif
@endsection @section('script') @endsection