@if ($list_items) @foreach ($list_items as $list_item) {{ $loop->iteration }} @if($list_item->thumbnail) {{ $list_item->title }} @else No Thumbnail @endif
{{ $list_item->title }}
@if($list_item->description) {{ Str::limit($list_item->description, 50) }} @endif {{ $list_item->images_count ?? 0 }} images @if ($list_item->status) Active @else Inactive @endif {{ $list_item->updated_at->format('d-m-Y, g:i A') }} @include('admin.crud.action-dropdown', [ 'cloneUrl' => url('admin/gallery-albums/'.$list_item->id.'/clone'), 'cloneTitle' => 'Clone Album', 'editUrl' => url('admin/gallery-albums/'.$list_item->id.'/edit'), 'editTitle' => 'Update Album', 'deleteUrl' => route('admin.gallery-albums.destroy', $list_item->id), 'redirectUrl' => route('admin.gallery-albums.index') ]) @endforeach @endif