@extends('layouts.app') @section('content')
{{ trans_field($builder, 'titre') ?? $builder->titre_ar }}
@foreach($builder->contenus as $contenu) @php 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')
{!! trans_field($contenu, 'text') ?? $contenu->text_ar !!}
@elseif($contenu->nature == 'video' && $videoEmbed)
@endif
@endforeach
@endsection