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