@extends('layouts.admin') @section('title', 'Blog Posts') @section('page-title', 'Blog Posts') @section('content')
{{ $posts->total() }} total posts
| Title | Category | Author | Status | Published | Actions |
|---|---|---|---|---|---|
|
{{ Str::limit($post->excerpt ?? $post->content, 60) }}
|
{{ $post->category ?? 'General' }} | {{ $post->author->name ?? 'Admin' }} | {{ $post->status=='published' ? '✓ Published' : '◷ Draft' }} | {{ optional($post->published_at)->format('d M Y') ?? '—' }} |
|
| No blog posts yet | |||||