@extends('admin.layouts.admin') @section('title', 'Testimonials') @section('content')

Testimonials

Customer quotes shown on the homepage.

+ New Testimonial
@forelse ($testimonials as $testimonial) @empty @endforelse
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
@csrf @method('DELETE')
No testimonials yet.
{{ $testimonials->links() }}
@endsection