{{ $video['title'] ?? 'Farm Video' }}
{{ $video['description'] ?? '' }}
{{ $video['uploaded_at'] ?? '-' }} by {{ $video['uploaded_by'] ?? 'admin' }}
@extends('layouts.admin') @section('title', 'Videos') @push('styles') @endpush @section('content') @php $videos = $videos ?? []; $publishedCount = collect($videos)->where('status', 'Published')->count(); $draftCount = collect($videos)->where('status', 'Draft')->count(); @endphp
Administration
Upload and publish videos for the public Our Videos page.
{{ $publishedCount }} published, {{ $draftCount }} draft.
{{ $video['description'] ?? '' }}
{{ $video['uploaded_at'] ?? '-' }} by {{ $video['uploaded_by'] ?? 'admin' }}