@extends('layouts.admin') @section('title', 'Blog Posts') @section('header_title', 'Manage Blog Posts') @section('content')
Create New Post
@forelse($posts as $post) @empty @endforelse
Title Author Status Published At Actions
{{ Str::limit($post->title, 50) }} {{ $post->user->name ?? 'N/A' }} @if($post->is_published) Published @else Draft @endif {{ $post->published_at ? $post->published_at->format('Y-m-d H:i') : 'Not yet' }} Edit
@csrf @method('DELETE')
No blog posts found.
{{ $posts->links() }}
@endsection