@extends('frontend::layouts.master') @section('title', 'รายละเอียดคลิปการสอน | ศูนย์ความรู้ อ.อ๊อบ') @section('content')
ย้อนกลับไปหน้าคลิปการสอน
@php if (!empty($video['youtube'])) { $youtubeEmbedUrl = 'https://www.youtube.com/embed/' . rawurlencode((string) $video['youtube']); } elseif ($youtubeSource !== '') { if (str_contains($youtubeSource, 'youtube.com/embed/')) { $youtubeEmbedUrl = $youtubeSource; } elseif (preg_match('/(?:youtube\.com\/watch\?v=|youtu\.be\/)([A-Za-z0-9_-]{6,})/', $youtubeSource, $matches) === 1) { $youtubeEmbedUrl = 'https://www.youtube.com/embed/' . $matches[1]; } } @endphp
@if($youtubeEmbedUrl !== '') @else {!! $video['name'] ?? '' !!} @endif

{!! $video['name'] ?? '' !!}

{!! $video['categories'][0]['name'] ?? '' !!}

{!! $video['desc'] ?? '' !!}

{!! $video['detail'] ?? '' !!}
@endsection