@if(Session::has('success'))
{{ Session::get('success') }}
@endif
{{ __('All Testimonials') }}
| {{ __('ID') }} |
{{ __('Name') }} |
{{ __('Designation') }} |
{{ __('Organization') }} |
{{ __('Message') }} |
{{ __('Image') }} |
{{ __('Action') }} |
@foreach($testimonials as $testimonial)
| {{ $loop->iteration }} |
{{ $testimonial->name }} |
{{ $testimonial->designation }} |
{{ $testimonial->organization }} |
{{ $testimonial->message }} |
|
{{ Form::open(['route'=>['testimonial.destroy',$testimonial->id],'method'=>'delete','onsubmit'=>'return confirmDelete()']) }}
{{ Form::submit('X',['class'=>'btn btn-danger']) }}
{{ Form::close() }}
|
@endforeach
@stop
@section('script')
@stop