@extends('layouts/blankLayout') @section('title', $event->event_name ?? 'Event View') @section('page-style') @endsection @section('content') @if($event->event_cover) {{ $event->event_name }} @else
No Cover Image
@endif
{{ $event->event_name }}
{{ \Carbon\Carbon::parse($event->event_date)->format('l, F d, Y') }}
@if(!empty($event->event_details))
{{ $event->event_details }}
@endif
@if(isset($event_photos) && count($event_photos)) @endif

Still need help?

Our specialists are always happy to help. Contact us during standard business hours or email us 24/7 and we'll get back to you.

@endsection