@extends('layouts.app') @section('title', $post->judul.' – SD Negeri 4 Keling') @section('content') {{-- Page Hero --}}

Beranda  /  Berita & Acara  /  Detail

{{ $post->judul }}

{{ $post->tanggal->translatedFormat('d F Y') }}  ·  {{ ucfirst($post->type) }}

{{-- Artikel --}}
@if($post->gambar) {{ $post->judul }} @else
@endif @if($post->video && $post->video_file)
@elseif($post->video && $post->video_url) @php // Ekstrak ID video YouTube dari berbagai format URL yang mungkin preg_match('/(?:youtu\.be\/|youtube\.com\/(?:watch\?v=|embed\/|shorts\/))([a-zA-Z0-9_-]{6,})/', $post->video_url, $ytMatch); $ytId = $ytMatch[1] ?? null; @endphp @if($ytId)
@else
Lihat video kegiatan ini
@endif @endif

{{ $post->konten ?: $post->deskripsi }}

← Kembali ke Berita & Acara
{{-- Sidebar --}}

Info Kegiatan

{{ $post->tanggal->translatedFormat('d F Y') }}
{{ ucfirst($post->type) }}
Halaman SD Negeri 4 Keling

Berita Lainnya

@forelse($lainnya as $item)

{{ $item->judul }}

{{ $item->tanggal->translatedFormat('d M Y') }}

@empty

Belum ada berita lain.

@endforelse
@endsection