@extends('Backend.dashboard') @section('title') testimonials @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
@foreach($testimonials as $testimonial) @endforeach
Testimonials Actions
{{ $testimonial->name }} Edit Testimonial Delete Testimonial
@csrf
@endsection