@extends('layouts.base') @section('title') Video Gallery @endsection @php function getYoutubeEmbedUrl($url) { preg_match('/(?:youtube\.com\/watch\?v=|youtu\.be\/)([^&]+)/', $url, $matches); return isset($matches[1]) ? 'https://www.youtube.com/embed/' . $matches[1] : null; } @endphp @section('content')
{{ $video->title ?? 'Untitled Video' }}
{{ $video->description ?? '' }}
No video gallery data found.