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

Homepage Settings

Testimonials

Manage client feedback cards shown on frontend.

Add Testimonial
@if(session('success'))
{{ session('success') }}
@endif
@forelse($testimonials as $testimonial) @empty @endforelse
S.NO. Client Message Status Order Action
{{ $loop->iteration }}
@if($testimonial->photo) {{ $testimonial->name }} @else
@endif {{ $testimonial->name }}
{{ Str::limit($testimonial->message, 90) }} {{ $testimonial->status ? 'Active' : 'Inactive' }} {{ $testimonial->sort_order }} {{-- List action intentionally only Edit; delete is available on edit page. --}} Edit
No testimonials found.
@endsection