@extends('layouts.frontend') @section('title', 'Our Branches - ' . church_name()) @section('description', 'Find a church branch near you') @section('content') @php $allBranches = collect(); if ($currentChurch) { $allBranches->push($currentChurch); } $allBranches = $allBranches->merge($branches); @endphp
Our Family of Churches

Our Branches

Find a church branch near you. We're one family, many locations, serving communities across the region.

@if($allBranches->count() > 0)
@foreach($allBranches as $branch)
@if($branch->logo)
{{ $branch->name }}
@else
@endif
{{ str_replace('-', ' ', $branch->type) }}

{{ $branch->name }}

@if($branch->tagline)

{{ Str::limit($branch->tagline, 80) }}

@endif
@if($branch->location)
{{ $branch->location }}
@endif @if($branch->address)
{{ $branch->address }}
@endif @if($branch->phone)
{{ $branch->phone }}
@endif @if($branch->email)
{{ $branch->email }}
@endif @if($branch->service_times)
{{ $branch->service_times }}
@endif
@endforeach
@else

Single Location

Currently, we have one location. More branches coming soon!

@endif

Want to Open a New Branch?

If you're interested in starting a new branch in your community, we'd love to hear from you. Reach out to learn more about our church planting opportunities.

Contact Us
@endsection