@extends('layouts.admin') @section('title', 'Manage Videos') @section('content')

Manage Videos

Add Video
@foreach($videos as $video) @endforeach
Video Category Status Views Date Actions
@if($video->thumbnail) {{ $video->title }} @else
@endif
{{ Str::limit($video->title, 50) }}
{{ $video->user->name ?? 'Unknown' }}
{{ $video->category->name }} {{ ucfirst($video->status) }} {{ number_format($video->views) }} {{ $video->created_at->format('M d, Y') }} @if($video->status === 'pending')
@csrf
@csrf
@endif
@csrf @method('DELETE')
{{ $videos->withQueryString()->links() }}
@endsection