@extends('layouts.app') @section('title', 'Calendar') @section('page-title', 'Calendar Events') @section('content')

Calendar Events

+ Create Event
@forelse($events as $event)

{{ $event->title }}

{{ $event->description }}

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

@if($event->location)

{{ $event->location }}

@endif
View Edit
@csrf @method('DELETE')
@empty
No events found
@endforelse
@endsection