@extends('admin.layouts.app') @section('title', 'Testimonials') @section('breadcrumb')
  • Testimonials
  • List
  • @endsection @section('heading', 'Testimonials') @section('subheading', 'Manage homepage testimonials. These appear on the frontend via API.') @section('content') @if (session('success'))
    {{ session('success') }}
    @endif
    Add Testimonial
    @forelse ($testimonials as $t) @empty @endforelse
    # Name Role Active Order Actions
    {{ $t->id }} {{ $t->name }} {{ $t->role ?? '—' }} {{ $t->is_active ? 'Yes' : 'No' }} {{ $t->sort_order }} Edit
    @csrf @method('DELETE')
    No testimonials yet. Add one.
    @if ($testimonials->hasPages())
    {{ $testimonials->links() }}
    @endif
    @endsection