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

Testimonials

Manage graduate success stories shown on the landing page.

Add Testimonial
@if($testimonials->isEmpty())

No testimonials found

Add your first testimonial
@else
@foreach($testimonials as $testimonial) @endforeach
# Graduate Course Rating Status Actions
{{ $testimonial->sort_order }}
{{ $testimonial->name }}

{{ $testimonial->name }}

{{ $testimonial->role }} {{ $testimonial->country ? '- '.$testimonial->country : '' }}

{{ $testimonial->course ?? '-' }} @for($i = 0; $i < $testimonial->rating; $i++)@endfor {{ $testimonial->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
{{ $testimonials->links() }}
@endif @endsection