@extends('layouts.admin') @section('title', 'Blog Posts') @section('header_title', 'Manage Blog Posts') @section('content')
| 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 |
| No blog posts found. | ||||