@extends('admin.template.layout') @section('header') @stop @section('content') @if (session('success'))
{{ session('success') }}
@endif
@if (check_permission('banners', 'Create'))
Create Testimonial
@endif
@foreach ($testimonials as $key => $testimonial) @endforeach
# Name Review Rating Actions
{{ $key + 1 }} {{ $testimonial->name }} {{ $testimonial->review }} {{ $testimonial->rating }}
@stop @section('script') @endsection