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

Testimonials List

Add Testimonial
@if(session('success'))
{{ session('success') }}
@endif @foreach($testimonials as $testimonial) @endforeach
# Name Description Image Actions
{{ $loop->iteration }} {{ $testimonial->name }} {{ $testimonial->description }} @if($testimonial->getFirstMediaUrl('testimonial_image')) Testimonial Image @else No Image @endif Edit
@csrf @method('DELETE')
@endsection @section('script') @endsection