@extends('admin.layouts.admin') @section('title', 'Testimonials') @section('content')
Customer quotes shown on the homepage.
| Name | Rating | Status | |
|---|---|---|---|
| {{ $testimonial->name }} @if ($testimonial->location) — {{ $testimonial->location }} @endif | {{ str_repeat('★', $testimonial->rating) }}{{ str_repeat('☆', 5 - $testimonial->rating) }} | {{ $testimonial->is_published ? 'Published' : 'Hidden' }} | Edit |
| No testimonials yet. | |||