@extends('adminlte::page') @section('title', 'Bank Materi') @section('plugins.Datatables', true) @push('css') @endpush @section('content')
Kelola bahan ajar digital Anda di satu tempat.
| # | Konten Materi | Target Kelas | Status | Aksi |
|---|---|---|---|---|
| {{ $index + 1 }} | {{-- KONTEN MATERI (Rich Cell) --}}
{{-- Thumbnail --}}
@if($materi->type == 'youtube')
{{-- Detail --}}
@php
$badgeClass = match($materi->type) {
'youtube' => 'badge-video',
'pdf' => 'badge-pdf',
default => 'badge-doc'
};
$typeLabel = match($materi->type) {
'youtube' => 'Video Pembelajaran',
'pdf' => 'E-Book / PDF',
default => 'Dokumen'
};
@endphp
{{ $typeLabel }}
{{ $materi->title }}
|
{{-- TARGET KELAS --}}
@if($materi->classLevel)
{{ substr($materi->classLevel->nama_kelas, 0, 2) }}
{{ $materi->classLevel->nama_kelas }}
|
{{-- STATUS --}}
@if($materi->is_active) Dipublikasikan @else Draft @endif | {{-- AKSI --}}
Mulai bagikan ilmu dengan mengupload materi pertama Anda.