@extends('layouts.app') @section('title', 'Events - ' . ($siteSettings->siteName ?? 'IPC Shalom Chicago')) @section('content') @if(session('success'))
@endif

EVENTS

EVENTS & SERVICES OF {{ strtoupper($siteSettings->siteName ?? 'IPC Shalom Chicago') }}

Want to become a part of {{ $siteSettings->siteName ?? 'IPC Shalom Chicago' }}?

Upcoming Special Events

@php $count = 0; @endphp @foreach($groupedEvents as $monthYear => $eventsInMonth) @php $collapseId = "collapse_" . Str::slug($monthYear); $count++; @endphp
@foreach($eventsInMonth as $event)
{{ $event->eventDateMonth }}
{{ $event->eventDateNo }}
{{ $event->eventDateYear }}

{{ $event->eventName }}

{{ $event->eventDate }}

@if($event->eventDesc)

{!! nl2br(e($event->eventDesc)) !!}

@endif
@endforeach
@endforeach @if(empty($groupedEvents))

No Special Events Scheduled

Currently there are no special monthly events on our calendar. However, we have vibrant weekly services and fellowship meetings. Please review our regular schedules on the right.

@endif

Sunday Services

@forelse($sundaySchedules as $sched)

{{ $sched->meetingName }}

{{ $sched->meetingTime }}

@empty

No Sunday schedules found.

@endforelse

Weekday Meetings

@forelse($weekdaySchedules as $sched)

{{ $sched->meetingName }}

{{ $sched->dayName }} | {{ $sched->meetingTime }}

@empty

No weekday schedules found.

@endforelse

Saturday Meetings

@forelse($saturdaySchedules as $sched)

{{ $sched->meetingName }}

{{ $sched->meetingTime }}

@empty

No Saturday schedules found.

@endforelse

Join Us in Worship

@csrf
@endsection