@extends('layouts.app') @section('title', $article->title.' — '.config('site.brand.name')) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($article->excerpt ?: $article->body), 155)) @section('content')
@if ($article->published_at) {{ __('site.article_published_on') }} {{ $article->published_at->translatedFormat('d M Y') }} @endif

{{ $article->title }}

@if ($article->coverImageUrl()) {{ $article->title }} @endif
{{ $article->body }}
@if ($related->isNotEmpty())

{{ __('site.article_related_title') }}

@foreach ($related as $relatedArticle) @endforeach
@endif @endsection