@extends('layouts.master_two') @section('content')
Unsupported file type.
@endif @elseif ($result->video_type == 'youtube') @php $url = $result['stream_url']; // Full YouTube URL $videoId = null; // Parse the YouTube URL and extract video ID $parsedUrl = parse_url($url); parse_str($parsedUrl['query'] ?? '', $queryParams); // Extract the video ID from query parameters if (isset($queryParams['v'])) { $videoId = $queryParams['v']; } @endphp @endif {{-- --}}