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