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

All Posts

New Post
@forelse($posts as $p) @empty @endforelse
TitleCategoryStatusDateActions
{{ $p->title }} {{ $p->category->name ?? '-' }} {{ $p->status }} {{ $p->created_at->format('M d, Y') }} Edit
@csrf @method('DELETE')
No posts yet
{{ $posts->links() }}
@endsection