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

All Testimonials

Manage student testimonials and reviews

Add Testimonial
{{-- Filters --}}
@if(request()->hasAny(['search', 'status'])) Clear @endif
{{-- Testimonials Table --}}
@forelse($testimonials as $testimonial) @empty @endforelse
Name Role Program Quote Order Status Actions
@if($testimonial->avatar) {{ $testimonial->name }} @else
{{ strtoupper(substr($testimonial->name, 0, 1)) }}
@endif {{ $testimonial->name }}
{{ $testimonial->role }} {{ $testimonial->program ?? '—' }} {{ \Illuminate\Support\Str::limit($testimonial->quote, 60) }} {{ $testimonial->sort_order }} {{ $testimonial->is_active ? 'Active' : 'Inactive' }}
Edit
@csrf @method('DELETE')
No testimonials found.
@if($testimonials->hasPages())
{{ $testimonials->links() }}
@endif
@endsection