@extends('member.layouts.app') @section('title', $testimony->title) @section('subtitle', 'Testimony by ' . $testimony->member->full_name) @section('content')
Back to Testimonies @if($testimony->member_id === auth('member')->id()) @endif
{{ $testimony->category_display }} @if(!$testimony->is_approved) Pending Approval @endif

{{ $testimony->title }}

{{ $testimony->created_at->format('M d, Y') }}
{{ $testimony->created_at->diffForHumans() }}
@if($testimony->member->photo_path) {{ $testimony->member->full_name }} @else @endif

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

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

{{ ucfirst($testimony->member->membership_type ?? 'member') }}
{{ $testimony->content }}
@if($testimony->tags && count($testimony->tags) > 0)

Tags

@foreach($testimony->tags as $tag) {{ $tag }} @endforeach
@endif
Inspiring others since {{ $testimony->created_at->format('M Y') }}
@if($relatedTestimonies->count() > 0)

More {{ $testimony->category_display }} Testimonies

@foreach($relatedTestimonies as $related)
@if($related->member->photo_path) {{ $related->member->full_name }} @else @endif

{{ $related->member->full_name }}

{{ $related->created_at->diffForHumans() }}

{{ $related->title }}

{{ $related->excerpt }}

Read Testimony
@endforeach
@endif

Inspired by this testimony?

God is working in your life too! Share your own story and encourage others in their faith journey.

@endsection