@inject('renderer', 'App\Domains\Encyclopedia\Services\ContentRenderer') @php // Maillage automatique vers les fiches du glossaire, comme sur les fiches. $renderer->linkGlossaryTerms(true); @endphp @php $clean = fn ($t) => strip_tags((string) preg_replace(['/\[\[[^\]]+\]\]/', '/\*\*/'], '', (string) $t)); $jsonld = \App\Support\StructuredData::graph( array_merge(\App\Support\StructuredData::article( $guide->title, $guide->meta_description, route('guides.show', $guide), $guide->created_at, $guide->updated_at, ), ['image' => asset('img/og-default.png')]), [ '@type' => 'HowTo', 'name' => $guide->title, 'description' => $guide->meta_description, 'inLanguage' => 'fr-FR', 'step' => collect($guide->steps)->values()->map(fn ($s, $i) => [ '@type' => 'HowToStep', 'position' => $i + 1, 'name' => $s['title'] ?? '', 'text' => $clean($s['body'] ?? ''), ])->all(), ], \App\Support\StructuredData::breadcrumb([ 'Guides pratiques' => route('guides.index'), $guide->title => route('guides.show', $guide), ]), \App\Support\StructuredData::faq($guide->faq ?? []), ); @endphp

{{ $guide->title }}

@if ($guide->audience)

{{ $guide->audience }}

@endif

Par Alexandre Baumberger, ancien juge au tribunal de commerce de Bordeaux (2018-2026) et juge-commissaire en procédures collectives · publié le {{ $guide->created_at?->translatedFormat('j F Y') }} @if ($guide->updated_at && ! $guide->updated_at->isSameDay($guide->created_at)) · mis à jour le {{ $guide->updated_at->translatedFormat('j F Y') }} @endif

{{ $renderer->html($guide->intro) }}

{{-- Étapes (HowTo) --}}
    @foreach ($guide->steps as $step)
  1. {{ $step['title'] ?? '' }}

    {{ $renderer->html($step['body'] ?? '') }}

  2. @endforeach
{{-- Vigilance --}} @if ($guide->warning)

Point de vigilance

{{ $renderer->html($guide->warning) }}

@endif {{-- CTA --}} @if (!empty($guide->ctas))

Et maintenant ?

@foreach ($guide->ctas as $cta) {{ $cta['label'] ?? '' }} @endforeach
@endif {{-- FAQ --}} @if (!empty($guide->faq))

Questions fréquentes

@foreach ($guide->faq as $qa)
{{ $qa['q'] ?? '' }}

{{ $renderer->html($qa['a'] ?? '') }}

@endforeach
@endif {{-- Notions liées --}} @if (!empty($guide->related_terms)) @php $related = \App\Domains\Reference\Models\GlossaryTerm::whereIn('slug', $guide->related_terms)->where('status', 'publie')->get(['term', 'slug']); @endphp @if ($related->isNotEmpty())

Pour aller plus loin

@foreach ($related as $rel) {{ $rel->term }} @endforeach
@endif @endif
Contenu informatif et pédagogique, adossé aux textes du Livre VI du Code de commerce (survolez les références pour lire le texte exact). Il ne remplace pas un conseil personnalisé.