@extends('admin.layouts.app') @section('title', 'Videos Management') @section('content')
Manage your product videos and media content
Total Videos
{{ $videos->total() }}
Active Videos
{{ $videos->where('is_active', true)->count() }}
Inactive Videos
{{ $videos->where('is_active', false)->count() }}
With Thumbnails
{{ $videos->whereNotNull('thumbnail')->count() }}
| Thumbnail | Title | Product | Duration | Status | Actions |
|---|---|---|---|---|---|
|
@if($video->thumbnail)
|
{{ $video->title }}
{{ Str::limit($video->url, 40) }}
|
{{ $video->product ? $video->product->name : 'N/A' }} | {{ $video->formatted_duration }} | ||