@extends('layouts.app') @section('title', 'Client Testimonials & Moderation') @section('content') @if(session('success')) @endif
Total Reviews
{{ $totalCount ?? 0 }}
Published on Website
{{ $publishedCount ?? 0 }}
Pending Approval
{{ $pendingCount ?? 0 }}
Customer Feedback & Reviews
Only approved reviews are shown on the public website.
@forelse($testimonials as $t) @empty @endforelse
Client Name Role / Title Car Model Rating Review Comment Website Status Actions
Avatar
{{ $t->name }}
ID #{{ $t->id }} • {{ $t->created_at ? $t->created_at->format('M d, Y') : 'Recent' }}
{{ $t->role ?: 'Verified Client' }} @if($t->car_model) {{ $t->car_model }} @else @endif
@for($i=0; $i<$t->rating; $i++) ★ @endfor
"{{ $t->comment }}"
@if($t->is_active) Published @else Pending Approval @endif
@csrf
@csrf @method('DELETE')
No client reviews submitted yet. When clients submit reviews on the website, they will appear here for moderation.
@endsection