@extends('backend.layouts.app') @section('title', 'Testimonials') @push('styles') @endpush @section('content')

Testimonials

@foreach( $testimonials as $key => $testimonial) @endforeach
SL. Image Name Testimonial Created at Updated at Action
{{$key+1}} @if(Storage::disk('public')->exists('testimonial/'.$testimonial->image) && $testimonial->image) {{$testimonial->name}} @else {{$testimonial->name}} @endif {{$testimonial->name}} {{$testimonial->testimonial}} {{ $testimonial->created_at->diffForHumans() }} {{ $testimonial->updated_at->diffForHumans() }} edit
@endsection @push('scripts') @endpush