@extends('layouts.app') @section('title', $news->title) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags((string) $news->summary), 160)) @section('content')
{{ $news->is_currently_important ? __('news.category_important') : __('news.category_default') }}

{{ $news->title }}

  • {{ optional($news->published_at)->locale(app()->getLocale())->isoFormat('LL') }}
@if($news->image_detail_url)
{{ $news->title }}
@endif
@if($news->summary)

{{ $news->summary }}

@endif
@sanitized($news->description)
@if($prevNews || $nextNews) @endif
@include('news.partials.sidebar', ['latestSidebar' => $latestSidebar])
@endsection