List Of Speeches
@if($speeches->count() == 0)
@else
{{ label('lbl_no_information') }}
| 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