@extends("backend.layouts.app") @section("title") {{ __($module_action) }} {{ __($module_title) }} @endsection @section("breadcrumbs") {{ __($module_title) }} {{ __($module_action) }} @endsection @section("content")

Manage Your Testimonials

Add Testimonial
@if(count($$module_name_singular) > 0)
@foreach ($$module_name_singular as $index => $testimonial) @endforeach
# Image Name Description Rating Actions
{{ $index + 1 }} @if($testimonial->image) Testimonial Image @else
@endif
{{ $testimonial->name }} {{ Str::limit($testimonial->description, 60) }} @for ($i = 1; $i <= 5; $i++) @endfor
@else
You haven't added any testimonials yet. Click one of the "Add" buttons to get started!
@endif
@endsection