@extends('layout') @section('page-title', 'Testimonials') @section('dashboard-content') @if(session('success'))
{{ session('success') }}
@endif {{-- Section header --}}
Section Header
@csrf
Customer Reviews + Add Review
@forelse($testimonials as $t) @empty @endforelse
Author Meta Review (preview) Stars Order Actions
{{ $t->author_name }} {{ $t->author_meta }} {{ Str::limit($t->text, 55) }} {{ str_repeat('★', $t->stars) }} {{ $t->sort_order }} Edit
@csrf @method('DELETE')
No testimonials yet. Add one.
@endsection