@extends('layouts.public') @section('title', $post->title) @section('content') {{ $post->published_at?->translatedFormat('d F Y') }} {{ $post->title }} @if($post->cover_image) @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) @endif {{ $other->title }} @endforeach @endif @endsection
{{ $post->published_at?->translatedFormat('d F Y') }}
Écrit par {{ $post->author->name }}