@extends('backoffice.dashboard') @section('title', $item->title) @section('content')
{{-- ======= Titre ======= --}}

{{ $item->title }}

{{-- ======= Image principale ======= --}} @if($item->image)
@endif {{-- ======= Bloc principal (vidéo + contenu) ======= --}}
{{-- Vidéo YouTube si présente --}} @if(!empty($item->youtube_url)) @php if (preg_match('/(youtu\.be\/|v=)([A-Za-z0-9_\-]+)/', $item->youtube_url, $m)) { $embedUrl = 'https://www.youtube.com/embed/' . $m[2]; } else { $embedUrl = null; } @endphp @if($embedUrl)
@endif @endif {{-- Contenu texte --}}
{!! $item->content !!}
{{-- ======= Informations supplémentaires ======= --}}

📅 التاريخ: {{ $item->date ?? 'غير محدد' }}

@if(isset($item->utilisateur))

✍ تمت الإضافة بواسطة: {{ $item->utilisateur->nom_prenom }}

@endif

📢 الحالة: {{ $item->published ? 'منشور' : 'غير منشور' }}

{{-- ======= Boutons d’action ======= --}}
{{-- ======= SweetAlert pour confirmation de suppression ======= --}}