@extends('layouts.admin', ['title' => 'Testimonials']) @section('content')
Testimonials
Add student/client feedback.
New Testimonial
@foreach($testimonials as $t) @endforeach
Order Quote Author Rating Published
{{ $t->sort_order }} {{ $t->quote }} {{ $t->author_name }} @if($t->author_title) · {{ $t->author_title }} @endif {{ str_repeat('★', (int) $t->rating) }} {{ $t->is_published ? 'Yes' : 'No' }} Edit
@endsection