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

Manajemen Academy

{{-- Data Card --}}
{{-- Card Header with Gradient --}}
Data Video Academy
{{-- Search and Add Section --}}
Tambah Data
{{-- Data Table --}}
@forelse($videos as $video) @empty @endforelse
Thumbnail Judul Kategori Level Durasi Views Status Order Aksi
@if($video->thumbnail) {{ $video->title }} @else
@endif
{{ $video->title }} @if($video->youtube_video_id)
ID: {{ $video->youtube_video_id }} @endif
{{ ucfirst($video->category) }} {{ ucfirst($video->level) }} @if($video->duration_minutes) {{ $video->duration_minutes }} menit @else - @endif {{ $video->view_count ?? 0 }} {{ ucfirst($video->status) }} {{ $video->sort_order }}
Tidak ada data video academy
{{-- Pagination --}}
Showing {{ $videos->firstItem() ?? 0 }} to {{ $videos->lastItem() ?? 0 }} of {{ $videos->total() }} entries
{{ $videos->links() }}
{{-- Delete Form --}} @endsection @push('styles') @endpush @push('scripts') @endpush