@extends('admin.layouts.app') @section('page-title', 'Blog Posts') @section('content')

Blog Posts

Manage your website's blog content.

New Post
@forelse($posts as $post) @empty @endforelse
Title Category Author Status Actions
@if($post->image) @endif

{{ $post->title }}

{{ $post->slug }}

{{ $post->category?->name ?? 'Uncategorized' }} {{ $post->author?->name ?? 'System' }} @if($post->published_at) Published @else Draft @endif
No posts found.
@if($posts->hasPages())
{{ $posts->links() }}
@endif
@endsection