@extends('layouts.app')
@section('title', $article->title ?? 'Detail Artikel')
@section('body-class', 'pt-24')
@section('nav-dropdown-active', 'bg-brand-soft/50')
@section('nav-blog-active', 'bg-brand-maroon text-white')
@section('content')
Kembali ke Blog
{{ $article->title ?? 'Judul Tidak Ditemukan' }}
Diterbitkan: {{ $article->created_at->format('d F Y') }}
@if($article->updated_at)
Diperbarui: {{ $article->updated_at->format('d F Y') }}
@endif
{{ number_format($article->view_count) }} Views
{!! $article->content !!}
Siap Tingkatkan SEO Anda?
Mulai Campaign Sekarang
@endsection