@extends('layouts.admin') @section('title', 'Blog Posts') @section('breadcrumb')
| Title | Author | Status | Published At | Actions |
|---|---|---|---|---|
| {{ $post->title }} | {{ $post->user->name }} | {{ $post->is_published ? 'Published' : 'Draft' }} | {{ $post->published_at ? $post->published_at->format('M d, Y') : '-' }} | Edit |
| No posts found. | ||||