@extends('layouts.app') @section('content')

Blog

Kelola artikel blog publik.

+ Tulis Artikel
@if (session('success'))
{{ session('success') }}
@endif
@forelse ($posts as $post) @empty @endforelse
Judul Kategori Status Views Tanggal Aksi

{{ $post->title }}

{{ $post->author->name }}

{{ ucfirst($post->category) }} @if ($post->is_published) Published @else Draft @endif {{ number_format($post->visit_count) }} {{ $post->created_at->format('d M Y') }}
@if ($post->is_published) Lihat @endif Edit
@csrf @method('DELETE')

📝

Belum ada artikel.

{{ $posts->links() }}
@endsection