@extends('layouts.student') @section('title', $material->title) @section('topbar-title', 'Materi') @section('content') Kembali ke {{ $course->title }} @php $fileUrl = null; if (in_array($material->type, ['pdf', 'word', 'excel']) && $material->content) { $fileUrl = Storage::url($material->content); } $embedUrl = null; if ($material->type === 'video' && $material->content) { preg_match('/(?:youtube\.com\/watch\?v=|youtu\.be\/|youtube\.com\/embed\/)([A-Za-z0-9_\-]+)/', $material->content, $matches); if (!empty($matches[1])) { $embedUrl = 'https://www.youtube.com/embed/' . $matches[1]; } } @endphp
URL video tidak dapat ditampilkan.
Buka VideoFile materi tersedia untuk diunduh.
@if($fileUrl) Unduh / Buka File @elseFile tidak ditemukan.
@endif