@extends('layouts.public') @section('title', $post->title) @section('content')

{{ $post->published_at?->translatedFormat('d F Y') }}

{{ $post->title }}

@if($post->cover_image) {{ $post->title }} @endif
{!! nl2br(e($post->content)) !!}
@if($post->author)

Écrit par {{ $post->author->name }}

@endif
@if($others->isNotEmpty())

À lire aussi

@foreach($others as $other)
@if($other->cover_image) {{ $other->title }} @endif

{{ $other->title }}

@endforeach
@endif @endsection