@extends('layouts.admin') @section('page-title', 'Detail Berita') @section('page-subtitle', 'Informasi lengkap berita') @section('content')

Detail Berita

{{ $news->title }}

@if($news->is_published) Published @else Draft @endif
Edit
@csrf @method('DELETE')
Kembali
@if($news->image)
{{ $news->title }}
@endif

{{ $news->title }}

{{ $news->user->name }}
Dibuat: {{ $news->created_at->format('d M Y, H:i') }}
@if($news->published_at)
Dipublikasikan: {{ $news->published_at->format('d M Y, H:i') }}
@endif
{!! $news->content !!}
@endsection