@extends('layouts.website') @section('title', 'Video Gallery') @section('hero') @endsection @push('styles') @endpush @section('content') {{-- Page heading --}}

Video Gallery

@if($videos->isEmpty())

No videos published yet.

@else
@foreach($videos as $v) @php $url = (string) $v->youtube_url; $id = null; if (preg_match('~youtu\.be/([^?&/]+)~', $url, $m)) { $id = $m[1]; } elseif (preg_match('~[?&]v=([^?&/]+)~', $url, $m)) { $id = $m[1]; } elseif (preg_match('~/embed/([^?&/]+)~', $url, $m)) { $id = $m[1]; } $thumb = $id ? ('https://img.youtube.com/vi/' . $id . '/hqdefault.jpg') : asset('website/images/home-01/video-bg.jpg'); $embedUrl = $id ? ('https://www.youtube.com/embed/' . $id . '?autoplay=1&rel=0') : $url; @endphp
{{ $v->title }}
{{ $v->title }}
@endforeach
@endif
{{-- Video Modal --}} @push('scripts') @endpush @endsection