@extends('layouts.app') @section('page_title', 'Events') @section('page_subtitle', 'Join our upcoming community actions, workshops, and volunteer programs.') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@forelse($events as $event)
@if($event->image_path)
{{ $event->title }}
@endif
{{ $event->event_date->format('M d, Y') }} @if($event->event_time) at {{ date('h:i A', strtotime($event->event_time)) }} @endif

{{ $event->title }}

{{ Str::limit($event->description, 120) }}

@if($event->location)
📍 {{ $event->location }}
@endif @auth
@csrf @method('DELETE')
@endauth
@empty
📅

No upcoming events at the moment. Check back soon!

@endforelse

Event Calendar

Our calendar shows workshops, fundraisers, and community meetups. We update this regularly to keep you informed about our latest activities.

Attendance Guidelines

Follow the guidelines to register and participate safely in our events. We prioritize the safety and well-being of all participants.

@endsection