@extends('layouts.admin-modern')
@section('title', 'Testimonials')
@section('content')
Testimonials
@forelse($testimonials as $t)
- {{ $t->name }} — {{
\Illuminate\Support\Str::limit($t->content, 100) }}
@empty
- Aucun témoignage trouvé.
@endforelse
@endsection