@extends('admin.layout') @section('title', 'Testimonials') @section('page-title', 'Testimonials') @section('page-subtitle', 'Manage client testimonials and reviews') @section('header-actions') + Add Testimonial @endsection @section('content')
@forelse($testimonials as $testimonial) @empty @endforelse
Client Name Title Rating Status Action
{{ $testimonial->client_name }} {{ $testimonial->client_title }} @for($i = 1; $i <= 5; $i++) @if($i <= $testimonial->rating) ⭐ @else ☆ @endif @endfor {{ $testimonial->is_active ? 'Active' : 'Inactive' }}
No testimonials found. Create your first testimonial!
@endsection @push('scripts') @endpush