@php use Illuminate\Support\Str; @endphp @extends('layouts.app') @section('title', $article->title) @section('meta') @if($article->og_image_url) @endif @endsection @section('content')

{{ optional($article->published_at)->format('d/m/Y') ?? 'Sem data' }} · {{ $article->author_name ?? $article->author ?? 'Redação' }}

{{ $article->title }}

@if($article->excerpt)

{{ $article->excerpt }}

@endif
@if($article->featured_image_url)
{{ $article->title }}
@endif
{!! $article->content_html ?? $article->body !!}
@endsection