@extends('core::layouts.master') @section('title', $news->title . ' - ASETQU V.2') @section('meta_description', $meta_description) @push('styles') @endpush @section('content') {{-- Hero Section --}} Kembali Detail Berita {{-- News Detail Section --}} {{-- News Title --}} {{ $news->title }} {{-- News Thumbnail --}} @if($news->thumbnail) @else @endif {{-- News Content --}} {!! nl2br(e($news->content)) !!} {{-- News Meta --}} {{ $news->published_at ? $news->published_at->locale('id')->translatedFormat('d F Y') : '-' }} {{-- Related News Section --}} @if($relatedNews->count() > 0) Berita Terkait @foreach($relatedNews as $item) @if($item->thumbnail) @else @endif {{ $item->published_at ? $item->published_at->format('d M Y') : '-' }} {{ Str::limit($item->title, 50) }} @endforeach @endif @endsection @push('scripts') @endpush