@extends('cms.application') @section('content')
List of Testimonials
@if($testimonials->count() == 0)
@else @foreach($testimonials as $key => $testimonial) @endforeach
Photo Fullname Title Created On Status Option
{{ $testimonial->fullname }} @php echo wordwrap($testimonial->title,60,"
") @endphp
{{ date_format(date_create($testimonial->created_at), 'dS M Y, H:i:s') }} @if ($testimonial->active) Published @else UnPublished @endif
View & Edit {!! link_to_route('cms.testimonials.destroy', "delete", array($testimonial->id), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'label theme-b bg-danger text-white f-12')) !!}
{{-- {!! $testimonials->render() !!} --}}
@endif
@stop