@extends('layouts.app') @section('content')
{{ $builder->titre_ar }}
@foreach($builder->contenus as $contenu) @php // Transformer le lien YouTube pour iframe if ($contenu->nature == 'video') { preg_match("/v=([a-zA-Z0-9_-]+)/", $contenu->url_video, $matches); $videoId = $matches[1] ?? ''; $videoEmbed = $videoId ? "https://www.youtube.com/embed/$videoId" : ''; } @endphp
@if($contenu->nature == 'image' && $contenu->image)
@elseif($contenu->nature == 'texte')
{!! $contenu->text_ar !!}
@elseif($contenu->nature == 'video' && $videoEmbed)
@endif
@endforeach
@endsection