@extends('layouts.frontend') @section('title', $post->title) @section('content')

Actualités

{{ $post->title }}

{{ $post->title }}

@if ($post->image) {{ $post->title }} @endif {{-- YouTube video --}} @if ($post->youtube_url) @php // Extract video ID from full YouTube URL preg_match('/(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/ ]{11})/', $post->youtube_url, $matches); $youtubeId = $matches[1] ?? null; @endphp @if ($youtubeId)
@endif @endif

{!! $post->description !!}

@endsection