@extends('layouts.public') @section('title', ($event->seo_title ?: $event->title) . ' - ' . config('app.name')) @section('meta_description', $event->seo_description ?: ($event->excerpt ?: 'Event details')) @push('styles') @endpush @section('content')
@if($event->cover_image)
{{ $event->title }}
@endif

Event Starts in:

00

Days

00

Hours

00

Minutes

00

Seconds

{{ $event->starts_at ? $event->starts_at->format('d M Y, h:i A') : 'Date coming soon' }}

{{ $event->title }}

{{ $event->content }}

Date

{{ $event->starts_at ? $event->starts_at->format('d/m/Y') : '-' }}

Time

{{ $event->starts_at ? $event->starts_at->format('h:i A') : '-' }}

Venue

{{ $event->venue ?: '-' }}

@if($event->location)

Location: {{ $event->location }}

@endif @if($event->excerpt)

{{ $event->excerpt }}

@endif

Event Registration

@if(session('success'))
{{ session('success') }}
@endif
@csrf @error('full_name')

{{ $message }}

@enderror @error('email')

{{ $message }}

@enderror @error('phone')

{{ $message }}

@enderror @error('last_qualification')

{{ $message }}

@enderror

Event Location

Find us at this venue

@php $mapQuery = urlencode($event->location ?: ($event->venue ?: 'Dhaka')); @endphp

Browse Other Events

@foreach($otherEvents as $item) @endforeach
@endsection @push('scripts') @endpush