{!! $ln_pg->timer_title !!}
0
Days
0
Hours
0
Minutes
0
Seconds
@php
$url = $ln_pg->video_url; // Always use desktop URL
$youtubeId = null;
// Check if it's a YouTube video (regular or shorts)
if (preg_match('/(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/\s]{11})|youtube\.com\/shorts\/([^"&?\/\s]{11})/', $url, $matches)) {
$youtubeId = $matches[1] ?: $matches[2]; // Get the YouTube ID
}
@endphp
@if($youtubeId)
@endif
@if(isset($ln_pg->review_top_text))
@endif
@foreach($ln_pg->review_images as $review_slider)
@endforeach