@extends('layouts.admin') @section('title', 'Posts - Admin') @section('content')
| Title | Category | Status | Created | Actions |
|---|---|---|---|---|
| {{ $post->title }} | {{ $post->category ?? '—' }} | @if($post->published_at && $post->published_at <= now()) Published @else Draft @endif | {{ $post->created_at->format('M d, Y') }} | |
| No posts found. Create one | ||||