@extends('layouts.app') @section('meta_title', 'Admin - Kelola Posts') @section('meta_description', 'Halaman admin untuk mengelola posts blog') @section('content')

Kelola Posts

Manage semua artikel blog Anda

Buat Post Baru
@if(session('success')) @endif
@if($posts->count() > 0)
@foreach($posts as $post) @endforeach
Judul Kategori Status Tanggal Aksi
@if($post->featured_image)
{{ $post->title }}
@endif
{{ Str::limit($post->title, 50) }}
{{ $post->slug }}
{{ $post->category->name }} @if($post->status === 'published') Published @else Draft @endif {{ $post->created_at->format('d M Y') }}
Lihat Edit
@csrf @method('DELETE')
{{-- Pagination --}}
{{ $posts->links() }}
@else

Belum Ada Post

Mulai dengan membuat post pertama Anda!

Buat Post Pertama
@endif
@endsection