@extends('admin::layouts.admin') @section('title', 'Manajemen Academy') @push('styles') @endpush @section('content')
{{-- Page Title --}}

Manajemen Academy

{{-- Data Card --}}
{{-- Card Header with Gradient --}}
Data Video Academy
{{-- Toolbar --}} {{-- Data Table --}}
@foreach($videos as $video) @endforeach
Thumbnail Judul Kategori Level Durasi Views Order Status Aksi
@if($video->thumbnail) {{ $video->title }} @else
@endif
{{ $video->title }} @if($video->youtube_video_id)
ID: {{ Str::limit($video->youtube_video_id, 15) }} @endif
{{ ucfirst($video->category) }} {{ ucfirst($video->level) }} @if($video->duration_minutes) {{ $video->duration_minutes }} min @else - @endif {{ number_format($video->view_count ?? 0) }} {{ $video->sort_order }} @if($video->status == 'published') Published @elseif($video->status == 'draft') Draft @else Archived @endif
@csrf @method('DELETE')
@push('scripts') @endpush @endsection