@inject('renderer', 'App\Domains\Encyclopedia\Services\ContentRenderer') @php $renderer->linkGlossaryTerms(true); @endphp @php $jsonld = ['@context' => 'https://schema.org', '@graph' => [ [ '@type' => 'Article', 'headline' => $template->title, 'description' => $template->meta_description, 'inLanguage' => 'fr-FR', 'mainEntityOfPage' => route('modeles.show', $template), 'datePublished' => optional($template->created_at)->toIso8601String(), 'dateModified' => optional($template->updated_at)->toIso8601String(), 'author' => ['@type' => 'Person', 'name' => 'Alexandre Baumberger', 'url' => route('page.apropos')], 'publisher' => ['@type' => 'Organization', 'name' => 'SauverMonEntreprise.fr', 'url' => route('home')], ], [ '@type' => 'BreadcrumbList', 'itemListElement' => [ ['@type' => 'ListItem', 'position' => 1, 'name' => 'Accueil', 'item' => route('home')], ['@type' => 'ListItem', 'position' => 2, 'name' => 'Modèles de courriers', 'item' => route('modeles.index')], ['@type' => 'ListItem', 'position' => 3, 'name' => $template->title, 'item' => route('modeles.show', $template)], ], ], ]]; @endphp

{{ $template->title }}

@if ($template->recipient)

Destinataire : {{ $template->recipient }}

@endif {{-- Quand utiliser ce modèle --}}

Quand utiliser ce modèle

{{ $renderer->html($template->context) }}

{{-- Le courrier --}}

Le modèle

Texte (.txt) PDF

Remplacez les champs [ENTRE CROCHETS] par vos informations.

{{ $template->body }}
{{-- Pièces à joindre --}} @if (!empty($template->checklist))

Pièces à joindre

    @foreach ($template->checklist as $item)
  • {{ $renderer->html($item) }}
  • @endforeach
@endif {{-- Vigilance --}} @if (!empty($template->warnings))

Points de vigilance

    @foreach ($template->warnings as $w)
  • {{ $renderer->html($w) }}
  • @endforeach
@endif {{-- Guides liés --}} @if (!empty($template->related_guides)) @php $guides = \App\Domains\Editorial\Models\Guide::published()->whereIn('slug', $template->related_guides)->get(['title', 'slug']); @endphp @if ($guides->isNotEmpty())

Pour aller plus loin

@foreach ($guides as $g) {{ $g->title }} @endforeach
@endif @endif
Modèle indicatif rédigé sous la direction d'Alexandre Baumberger, ancien juge au tribunal de commerce de Bordeaux (2018-2026), juge du contentieux, juge des procédures collectives et juge-commissaire. À adapter à votre situation : il ne remplace pas un conseil personnalisé.