@extends('layouts.admin-simple') @section('title', 'Video Management') @section('page-title', 'Video Management') @section('breadcrumb')
| Video | Type | Category | Duration | Views | Status | Published | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $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') : '-' }} | |