@extends('member.layouts.app') @section('title', 'Testimonies') @section('subtitle', 'Share and read inspiring testimonies from our church family') @section('content')

Testimonies of Faith

Witness the amazing works of God in the lives of our church family. Be inspired, encouraged, and strengthened in your faith.

@if($testimonies->count() > 0)
@foreach($testimonies as $testimony)
{{ $testimony->category_display }} {{ $testimony->created_at->diffForHumans() }}

{{ $testimony->title }}

{{ $testimony->excerpt }}

@if($testimony->member->photo_path) {{ $testimony->member->full_name }} @else @endif

{{ $testimony->member->full_name }}

{{ $testimony->member->chapter ?? 'ACCRA' }} Chapter

Read More
@if($testimony->tags && count($testimony->tags) > 0)
@foreach(array_slice($testimony->tags, 0, 3) as $tag) #{{ $tag }} @endforeach
@endif
@endforeach
@if($testimonies->hasPages())
{{ $testimonies->links() }}
@endif @else

No Testimonies Found

@if(request()->hasAny(['search', 'category'])) No testimonies match your search criteria. Try adjusting your filters. @else Be the first to share your testimony and inspire others with God's goodness in your life. @endif

Share Your First Testimony @if(request()->hasAny(['search', 'category']))
Clear Filters
@endif
@endif
@endsection