@if ($list_items) @foreach ($list_items as $list_item) {{ $loop->iteration }}
@if($list_item->thumbnail_url) @else
@endif
{{-- Category Breadcrumb --}} @if(has_feature('categories') && $list_item->category) {{ $list_item->category->breadcrumb }} > @endif
{{ $list_item->title }}
@if($list_item->description) {{ Str::limit($list_item->description, 50) }} @endif
{{ $list_item->slug }}
@if ($list_item->status === 'published') Published @elseif ($list_item->status === 'draft') Draft @else Archived @endif
Course Overview
Manage Course Content
@if(has_feature('programs')) @if($list_item->program) {{ $list_item->program->title }} @else No Program @endif @endif Created by:
{{ $list_item->creator ? $list_item->creator->name : 'Unknown' }}

{{ $list_item->created_at->format('d-m-Y, g:i A') }} @include('admin.crud.action-dropdown', [ 'cloneUrl' => url('admin/courses/'.$list_item->id.'/clone'), 'cloneTitle' => 'Clone Course', 'editUrl' => url('admin/courses/'.$list_item->id.'/edit'), 'editTitle' => 'Update Course', 'deleteUrl' => route('admin.courses.destroy', $list_item->id), 'redirectUrl' => route('admin.courses.index') ]) @endforeach @endif