@extends('admin.layouts.app') @section('title', 'LMS') @section('page-title', 'LMS') @section('content') @if(session('success')) @endif

Kelola LMS

Konten pembelajaran sederhana untuk anggota

Tambah Konten
Daftar Konten
@if($items->count() > 0)
@foreach($items as $item) @endforeach
Cover Judul Kategori Level Status Diperbarui Aksi
@if($item->cover) 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') }}
@csrf @method('DELETE')
{{ $items->links() }} @else
Belum ada konten LMS.
@endif
@endsection