@extends('layouts.admin') @section('title') Testimonials @endsection @section('content')

Add New Testimonial


@csrf
@if(count($testimonials) > 0) @foreach($testimonials as $t) @endforeach @else @endif
# Name Title Message Actions
{{ $i++ }} {{ $t->name }} {{ $t->title }} {!! $t->description !!}
No Testimonials found
@endsection @section('script') @endsection