@extends('layouts.layout') @section('title', 'Testimonials') @section('content')

Testimonials List

@if(Session::has('message')) @endif @if(count($testimonials)>0) @foreach($testimonials as $key=>$item) @endforeach @else @endif
# Client Name Comments Date & Time Status Action
{{ $key+1 }} {{ $item->client_name }} {{ $item->comments }} @if($item->updated_at) {{ date("d/m/Y h:i A",strtotime($item->updated_at))}} @else {{ date("d/m/Y h:i A",strtotime($item->created_at))}} @endif @if($item->status=='0') Declined @endif @if($item->status=='1') Approved @endif @include('shared._actions', [ 'entity' => 'testimonials', 'id' => $item->id ])

No records found!

Click here to add a new record.
@endsection