@extends('layouts.admin')
@section('title', 'Events Calendar')
@section('page-title', 'Events Calendar')
@section('content')
Operations / Events Calendar
| Date |
Event Title |
Location |
Target Group |
Action |
@forelse($events as $evt)
| {{ \Carbon\Carbon::parse($evt->event_date)->format('d M Y - l') }} |
{{ $evt->title }}
{{ $evt->description }}
|
{{ $evt->location ?? 'N/A' }} |
All Classes |
|
@empty
| No scheduled school events found. |
@endforelse
@endsection