@extends('admin.layout') @section('title', 'Blog Posts') @section('page-title', 'Blog Posts') @section('page-subtitle', 'Create, publish and manage articles') @section('header-actions') + Add Blog Post @endsection @section('content')
@forelse($posts as $post) @empty @endforelse
Title Status Published Date Action
{{ $post->title }} {{ $post->is_published ? 'Published' : 'Draft' }} {{ $post->published_at ? $post->published_at->format('M d, Y') : 'Not published' }}
No blog posts found. Create your first post!
@endsection @push('scripts') @endpush