Testimony Details

Review and manage this testimony

@if(!$testimony->is_approved)
@csrf
@else
@csrf
@endif
@csrf @method('DELETE')
@if($testimony->is_approved) Approved @else Pending Approval @endif @if($testimony->is_public) Public @else Private @endif
{{ $testimony->created_at->format('M d, Y \a\t g:i A') }}
{{ $testimony->category_display }}

{{ $testimony->title }}

{!! nl2br(e($testimony->content)) !!}
@if($testimony->tags && count($testimony->tags) > 0)

Tags

@foreach($testimony->tags as $tag) #{{ $tag }} @endforeach
@endif @if($testimony->is_approved && $testimony->approvedBy)

Approved by {{ $testimony->approvedBy->name }}

{{ $testimony->approved_at->format('M d, Y \a\t g:i A') }}

@endif

Member Information

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

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

Member ID: {{ $testimony->member->member_id }}

Chapter {{ $testimony->member->chapter ?? 'ACCRA' }}
Email {{ $testimony->member->email }}
Phone {{ $testimony->member->phone ?? 'N/A' }}
Member Since {{ $testimony->member->created_at->format('M Y') }}
Member Profile: {{ $testimony->member->member_id }}

Statistics

Likes
{{ number_format($testimony->likes_count) }}
Views
{{ number_format($testimony->views_count ?? 0) }}
Shares
{{ number_format($testimony->shares_count ?? 0) }}

Quick Actions

@if($testimony->is_public) View Public Page @endif Export as CSV
@if($relatedTestimonies->count() > 0)

Related Testimonies

@foreach($relatedTestimonies as $related)

{{ $related->title }}

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

{{ $related->created_at->format('M d, Y') }} View
@endforeach
@endif