@if($items->count() > 0)
| Cover |
Judul |
Kategori |
Level |
Status |
Diperbarui |
Aksi |
@foreach($items as $item)
@if($item->cover)
@else
-
@endif
|
{{ $item->title }}
{{ $item->slug }}
|
{{ $item->category ?? '-' }} |
{{ $item->level ?? '-' }} |
@php($statusClass = match($item->status){
'Published' => 'bg-success',
'Draft' => 'bg-secondary',
'Archived' => 'bg-warning',
default => 'bg-secondary'
})
{{ $item->status }}
|
{{ $item->updated_at->format('d/m/Y H:i') }} |
|
@endforeach
{{ $items->links() }}
@else
Belum ada konten LMS.
@endif