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