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