@extends('layouts.admin.master') @section('title') Testimonials @stop @section('content') @include('layouts.admin.flash.alert')

Manage Testimonials Here you can manage the Testimonials

List Testimonial

@if($testimonials->count() > 0) @php $i = (($testimonials->currentPage() - 1) * ($testimonials->perPage()) + 1) @endphp @foreach($testimonials as $testimonial) @php $i++; @endphp @endforeach @else @endif
# Author Date Actions
{{$i}}. {{$testimonial->author}} {{$testimonial->created_at}}      
Record Not Available
@stop