Testimonies Management

Manage and moderate member testimonies

Total Testimonies

{{ $stats['total'] }}

Approved

{{ $stats['approved'] }}

Pending Approval

{{ $stats['pending'] }}

Public

{{ $stats['public'] }}

@if($testimonies->count() > 0)
@foreach($testimonies as $testimony)
@if($testimony->is_approved) Approved @else Pending @endif @if($testimony->is_public) Public @else Private @endif
{{ $testimony->category_display }}

{{ $testimony->title }}

{{ Str::limit($testimony->content, 120) }}

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

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

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

{{ $testimony->created_at->format('M d, Y') }} {{ $testimony->created_at->diffForHumans() }}
View Details
@if(!$testimony->is_approved)
@csrf
@else
@csrf
@endif
@csrf @method('DELETE')
@endforeach
@if($testimonies->hasPages())
{{ $testimonies->links() }}
@endif @else

No testimonies found

@if(request()->hasAny(['search', 'category', 'status', 'visibility'])) No testimonies match your current filters. @else No testimonies have been submitted yet. @endif

@if(request()->hasAny(['search', 'category', 'status', 'visibility'])) Clear Filters @endif
@endif