@extends('layouts.admin') @section('content')

Testimonial List

+ Add Testimonial
@if(session('success'))
{{ session('success') }}
@endif
@forelse($testimonials as $testimonial) @empty @endforelse
Name Designation Message Image Actions
{{ $testimonial->name }} {{ $testimonial->designation }} {{ Str::limit($testimonial->message, 100) }} @if($testimonial->image) @else N/A @endif Edit
@csrf @method('DELETE')
No testimonials found.
{{ $testimonials->links() }}
@endsection