@extends('admin.layouts.app') @section('title', 'Testimonials') @section('content')
@forelse($testimonials as $t) @empty @endforelse
PersonExcerptRatingStatus
{{ $t->name }}
{{ $t->role }}{{ $t->city ? ' · '.$t->city : '' }}
{{ Str::limit($t->body, 80) }} @if($t->rating) {{ str_repeat('★', $t->rating) }}{{ str_repeat('☆', 5 - $t->rating) }} @else — @endif {{ $t->is_active ? 'Active' : 'Hidden' }} @if($t->is_verified)✓ Verified@endif
@csrf @method('DELETE')
No testimonials yet
@endsection