@extends('layouts.admin') @section('header', 'Posts') @section('content')
| Title | Category | Status | Date | Actions |
|---|---|---|---|---|
|
{{ $post->title }}
@if($post->is_featured)
Featured
@endif
|
{{ $post->category ? $post->category->name : 'None' }} | {{ $post->is_published ? 'Published' : 'Draft' }} | {{ $post->created_at->format('M j, Y') }} | Edit |
| No posts found. | ||||