@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
{{-- Main content --}}

{{ $material->title }}

@if($material->section) {{ $material->section->title }} @endif {{ $material->created_at->translatedFormat('d F Y') }}
@if($material->type === 'video') @if($embedUrl)
@else

URL video tidak dapat ditampilkan.

Buka Video
@endif @elseif($material->type === 'link') @elseif($material->type === 'text')
{!! nl2br(e($material->content)) !!}
@elseif(in_array($material->type, ['pdf', 'word', 'excel']))

File materi tersedia untuk diunduh.

@if($fileUrl) Unduh / Buka File @else

File tidak ditemukan.

@endif
@endif
{{-- Sidebar --}}
Informasi Materi
{{ ucfirst($material->type) }}
{{ $material->created_at->format('d M Y') }}
{{ $course->title }}
@if($material->section)
{{ $material->section->title }}
@endif
Aksi Cepat
Daftar Materi @if($material->type !== 'text' && $material->content) @if($material->type === 'video' && $embedUrl) Buka di YouTube @elseif(in_array($material->type, ['pdf','word','excel']) && $fileUrl) Unduh File @elseif($material->type === 'link') Buka Tautan @endif @endif
@endsection