@extends('layouts.app') @section('title', 'Community Events') @section('content')

Community Events

Blood donation drives & community gatherings

@forelse($events as $event)
{{ $event->date->format('M') }} {{ $event->date->format('d') }}
{{ $event->title }}

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

{{ $event->location ?? 'TBA' }}

@empty

No upcoming events

Check back later for blood donation camps and community events.

@endforelse
{{ $events->links() }}
@endsection