@extends('layouts.admin-simple') @section('title', 'Video Management') @section('page-title', 'Video Management') @section('breadcrumb') @endsection @section('page-actions')
add Add Video
@endsection @section('content')

Videos

Manage video content
{{ $videos->total() }} videos
@forelse($videos as $video) @empty @endforelse
Video Type Category Duration Views Status Published Actions
{{ $video->title }}
{{ $video->title }}
{{ Str::limit($video->description, 50) }}
{{ $video->slug }}
{{ ucfirst($video->video_type) }} {{ $video->category_name }} {{ $video->formatted_duration ?: '-' }} {{ number_format($video->views_count) }}
@if($video->is_active) Active @else Inactive @endif @if($video->is_featured) Featured @endif
{{ $video->published_at ? $video->published_at->format('M d, Y') : '-' }}
video_library
No videos found

Create your first video to get started.

add Add Video
@if($videos->hasPages()) @endif
@endsection @section('modals') @foreach($videos as $video) @endforeach @endsection @push('scripts') @endpush