@extends('layouts.app') @push('before-css') @endpush @section('content')

Testimonial

Add Testimonial

@foreach($testimonial as $item) @endforeach
# NameDesignation Actions
{{ $item->id }} {{ $item->name }}{{ $item->verified }} {!! Form::open([ 'method'=>'DELETE', 'url' => ['/admin/testimonial', $item->id], 'style' => 'display:inline' ]) !!} {!! Form::button(' Delete', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-sm', 'title' => 'Delete Testimonial', 'onclick'=>'return confirm("Confirm delete?")' )) !!} {!! Form::close() !!}
{!! $testimonial->appends(['search' => Request::get('search')])->render() !!}
@endsection @push('js') @endpush