@if (!empty($url)) @php // استخراج ID الفيديو من URL اليوتيوب preg_match('/embed\/([^\?&"]+)/', $url, $matches); $videoId = $matches[1] ?? null; // تجهيز باراميترز اليوتيوب $params = 'autoplay=1&mute=1&loop=1&controls=0&modestbranding=1&rel=0&enablejsapi=1'; if ($videoId) { $params .= '&playlist=' . $videoId; } // إضافة البراميترز لرابط التشغيل $autoplayUrl = $url . (\Illuminate\Support\Str::contains($url, '?') ? '&' : '?') . $params; @endphp
@endif