@extends('frontend.layouts.app') @section('title', $event->seo_title) @section('description', $event->seo_description) @section('keywords', $event->seo_keyword) @section('tags', $event->seo_tags) @section('content')

News and Event Detail

Linking life to learning

{{ \Carbon\Carbon::parse($event->event_date)->format('M d, Y') }}

{{ $event->name }}

{{ $event->name }}
{!! $event->description !!}

Related Events

@forelse($relatedEvents as $related)
{{ $related->name }}
{{ $related->name }}
{{ \Carbon\Carbon::parse($related->event_date)->format('d M Y') }}
@empty

No related events found.

@endforelse

Frequently Asked Questions

@forelse($faqs as $index => $faq)

{{ $faq->answer }}

@empty

No FAQs available.

@endforelse
@endsection