Event Details

← Back to Events

{{ $event->title }}

@if($event->is_active) Active @else Inactive @endif @if($event->is_featured) Featured @endif
Edit Event
@csrf @method('DELETE')
@if($event->image)
{{ $event->title }}
@endif
Event ID:
{{ $event->id }}
Slug:
{{ $event->slug }}
Public URL: {{ route('events.show', $event) }}
Venue:
{{ $event->venue }}
Date:
{{ $event->date_range }} @if($event->time_range)
Time: {{ $event->time_range }} @endif
@if($event->excerpt)
Excerpt:
{{ $event->excerpt }}
@endif @if($event->external_link) @endif
Created:
{{ $event->created_at->format('M d, Y H:i') }} @if($event->creator)
by {{ $event->creator->name }} @endif
Last Updated:
{{ $event->updated_at->format('M d, Y H:i') }}

Event Content

{!! $event->content !!}
@if($event->image)

Image Information

Filename: {{ $event->image }}
Path: events/{{ $event->image }}
Full URL: {{ asset('events/' . $event->image) }}
@endif