@extends('layouts.admin') @section('title', 'Posts - Admin') @section('content')

Posts

Create New Post
{{-- Posts Table: Dark theme --}}
@forelse($posts as $post) @empty @endforelse
Title Category Status Created Actions
{{ $post->title }} {{ $post->category ?? '—' }} @if($post->published_at && $post->published_at <= now()) Published @else Draft @endif {{ $post->created_at->format('M d, Y') }}
Edit
@csrf @method('DELETE')
No posts found. Create one
{{-- Pagination --}}
{{ $posts->links() }}
@endsection