@extends('layouts.admin.master') @section('title') Testimonials @stop @section('content') @include('layouts.admin.flash.alert') Manage Testimonials Here you can manage the Testimonials Home Testimonials List Testimonial New Testimonial # Author Date Actions @if($testimonials->count() > 0) @php $i = (($testimonials->currentPage() - 1) * ($testimonials->perPage()) + 1) @endphp @foreach($testimonials as $testimonial) {{$i}}. {{$testimonial->author}} {{$testimonial->created_at}} @php $i++; @endphp @endforeach @else Record Not Available @endif @stop