@extends('layouts.frontend') @section('title', 'Events - ' . church_name()) @section('content')
Community Gatherings

Our Events

Join us for worship, fellowship, and growth. We have exciting events planned for everyone in our community.

Upcoming Events

@if($upcomingEvents->count() > 0)
@foreach($upcomingEvents as $event)
{{ \Carbon\Carbon::parse($event->start_date)->format('d') }}
{{ \Carbon\Carbon::parse($event->start_date)->format('M Y') }}
@if($event->event_type) {{ ucfirst($event->event_type) }} @endif

{{ $event->title }}

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

{{ \Carbon\Carbon::parse($event->start_date)->format('h:i A') }} - {{ \Carbon\Carbon::parse($event->end_date)->format('h:i A') }}
@if($event->location)
{{ $event->location }}
@endif
@if($event->enable_rsvp)
{{ $event->rsvps_count ?? 0 }} {{ Str::plural('RSVP', $event->rsvps_count ?? 0) }} @if(!$event->rsvp_deadline || \Carbon\Carbon::parse($event->rsvp_deadline) > now()) RSVP Now @else RSVP Closed @endif
@endif
@endforeach
@else

No Upcoming Events

Check back soon for new events!

@endif

Types of Events

We host a variety of events for all ages and interests

Worship Services

Sunday services and special worship nights

Bible Study

Deep dive into God's Word together

Youth Events

Activities and fellowship for young people

Children's Ministry

Fun and learning for kids

@if($pastEvents->count() > 0)

Past Events

@foreach($pastEvents as $event)

{{ $event->title }}

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

@endforeach
@endif

Want to Get Involved?

There are many ways to serve and participate in our church events. Contact us today!

@endsection