Manage Churches

@if(session('success')) @endif @if($churches->isNotEmpty()) @foreach($churches as $church) @endforeach
Name Zip code Email Phone Country About Status Actions
{{ $church->name }} {{ $church->location }} {{ $church->email }} {{ $church->phone }} {{ $church->country ?? 'N/A' }} {{ Str::limit(strip_tags($church->about), 30) }} @if($church->is_approved) Approved @else Pending @endif
@csrf @method('DELETE')
@else

No churches found.

@endif