@extends('layouts.app') @section('title', $event->title) @section('page-title', $event->title) @section('content')

{{ $event->title }}

Edit
@csrf @method('DELETE')

Description

{{ $event->description ?? 'No description' }}

Start Date

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

End Date

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

@if($event->location)

Location

{{ $event->location }}

@endif

Created: {{ $event->created_at->format('M d, Y H:i') }}

Updated: {{ $event->updated_at->format('M d, Y H:i') }}

← Back to Calendar
@endsection