@extends('layouts.adminLayout.admin_design') @section('content')

Add Testimonial

{{ csrf_field() }}
@if(Session::has('flash_message_success')) @endif @if(Session::has('flash_message_error')) @endif

Added Testimonials

@foreach($testimonials as $testimonial)
{{ $testimonial->name }}

{{$testimonial->description}}

{{ $testimonial->profession }}

Created at -{{ $testimonial->created_at->format('d-M-Y') }}
Edit
@endforeach
@endsection