@extends('news.layout', [ 'metaTitle' => $article->meta_title ?: $article->title, 'metaDescription' => $article->meta_description ?: Str::limit(strip_tags((string)$article->excerpt), 160), ]) @section('news_content') {{-- OpenGraph meta --}} @push('head') @if($article->effective_og_image) @endif @if($article->meta_keywords) @endif @endpush
{{-- Cover image --}} @if($article->cover_url) {{ $article->title }} @endif {{-- Meta --}}
@if($article->category) {{ $article->category->name }} @endif {{ $article->author?->name }} · {{ $article->published_at?->format('d M Y') }} · {{ $article->reading_time }} min read · {{ number_format($article->views) }}

{{ $article->title }}

@if($article->excerpt)

{{ $article->excerpt }}

@endif
{!! $article->content !!}
{{-- Tags --}} @if($article->tags->isNotEmpty())
@foreach($article->tags as $tag) {{ $tag->name }} @endforeach
@endif {{-- Share buttons --}} {{-- Forum discussion link --}} @if($article->forum_thread_id) @endif {{-- Related articles --}} @if($related->isNotEmpty())

Related Articles

@foreach($related as $rel)
@include('news._article_card', ['article' => $rel])
@endforeach
@endif
{{-- col-lg-8 --}}
@endsection