@extends('admin.admin_master') @section('title') Testimonial List @endsection @section('content')
@if (session('success'))
Success! {{ Session::get('success') }}
@endif

All Testimonial Add New Testimonial

@foreach ($testimonials as $key => $row) @endforeach
Sl Name Country Description Action
{{ $key+1 }} {{ $row->name }} {{ $row->country }} {{ Str::limit($row->description,50) }}
@endsection