@extends('layouts.frontend') @section('title', $news->title . ' - TPK') @section('content')
@if($news->image) {{ $news->title }} @endif
{{ $news->published_at->format('l, d F Y') }} {{ $news->user->name }}

{{ $news->title }}

{!! $news->content !!}
@if($relatedNews->count() > 0)

Berita Lainnya

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