@if ($list_items) @foreach ($list_items as $list_item) {{ $loop->iteration }}
@if($list_item->thumbnail_url) @else
@endif
{{ $list_item->title }}
@if($list_item->description) {{ Str::limit($list_item->description, 50) }} @endif @if($list_item->video_url)
Play Video @endif
@if($list_item->reelCategory) {{ $list_item->reelCategory->title }} @else No Category @endif @if ($list_item->status == 1) Active @else Inactive @endif Created by:
{{ $list_item->creator->name }}
{{ $list_item->created_at->format('d-m-Y, g:i A') }} @include('admin.crud.action-dropdown', [ 'cloneUrl' => url('admin/reels/'.$list_item->id.'/clone'), 'cloneTitle' => 'Clone Reel', 'editUrl' => url('admin/reels/'.$list_item->id.'/edit'), 'editTitle' => 'Update Reel', 'deleteUrl' => route('admin.reels.destroy', $list_item->id), 'redirectUrl' => route('admin.reels.index') ]) @endforeach @endif