@extends('layouts.website')
@section('title', 'Video Gallery')
@section('hero')
@endsection
@push('styles')
@endpush
@section('content')
{{-- Page heading --}}
@if($videos->isEmpty())
@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
@endforeach
@endif
{{-- Video Modal --}}
@push('scripts')
@endpush
@endsection