@extends('layouts.app') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@forelse($posts as $post) @empty @endforelse
Title Category Status Published Actions
{{ $post->title }} {{ $post->category->name ?? 'Uncategorized' }} {{ $post->is_published ? 'Published' : 'Draft' }} {{ $post->published_at?->format('M d, Y') ?? 'N/A' }} Edit
@csrf @method('DELETE')
No blog posts found.
{{ $posts->links() }}
@endsection