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