{{-- ...entête HTML, styles, etc... --}} @extends('layouts.app') {{-- Assurez-vous d'avoir un layout de base --}} @section('title', $post->title) @section('content')

{{ $post->title }}

{{ $post->author->name }}
{{ $post->author->name }}
{{ $post->created_at->translatedFormat('j F Y') }} · @if($post->categories->isNotEmpty()) {{ $post->categories->first()->name }} @endif
{!! $post->content !!}
@endsection {{-- ...footer, scripts, etc... --}}