{{ $article->title }}
Author: {{ $article->author ?? 'Anonymous' }}
|
Published: {{ $article->publish_date ? \Carbon\Carbon::parse($article->publish_date)->format('d M Y') : 'N/A' }}
@if($article->category)
|
Category: {{ $article->category->category }}
@endif
Article
{!! $article->article !!}