{{-- Header --}}

Blog Manager

Create and manage blog posts

New Post
{{-- Stats Cards --}}
@foreach($this->getStats() as $stat)
{{ $stat['value'] }}
{{ $stat['label'] }}
@endforeach
{{-- Filters --}}
All Status Published Draft Featured All Categories @foreach($this->getCategories() as $category) {{ $category }} @endforeach Created Date Published Date Title Newest First Oldest First
{{-- Posts Table --}} Title Status Category Author Published Actions @forelse($posts as $post)
{{ $post->title }}
@if($post->excerpt)
{{ str_limit($post->excerpt, 60) }}
@endif
@if($post->is_published) Published @else Draft @endif @if($post->is_featured) Featured @endif
{{ $post->category ?? '—' }} {{ $post->author?->name ?? '—' }} {{ $post->published_at?->format('M j, Y') ?? '—' }}
@if($post->is_published) View @endif Edit Duplicate Delete
@empty

No blog posts found.

Create your first blog post to get started.

@endforelse
{{-- Pagination --}} @if($posts->hasPages())
{{ $posts->links() }}
@endif
{{-- Post Form Modal --}}
{{ $editingPost ? 'Edit Post' : 'Create Post' }}
@if($editingPost) Save as Draft {{ $editingPost->is_published ? 'Update' : 'Publish' }} @else Save Draft Publish @endif
{{-- Language Tabs --}}
{{-- Main Content --}}
{{-- Title & Slug --}}
Title ({{ strtoupper($activeLocale) }}) Slug ({{ strtoupper($activeLocale) }})
{{-- Excerpt --}} Excerpt ({{ strtoupper($activeLocale) }}) Optional excerpt for post listings and SEO {{-- Content --}} Content ({{ strtoupper($activeLocale) }})
{{-- Sidebar --}}
{{-- Publishing Options --}} Publishing
Published Date Featured Post Featured posts appear prominently on the site
{{-- Categories & Tags --}} Organization
Category Tags Separate multiple tags with commas
{{-- SEO Settings --}} SEO Settings
Meta Title ({{ strtoupper($activeLocale) }}) Meta Description ({{ strtoupper($activeLocale) }})
{{-- Featured Image --}} Featured Image
@if($featuredImage)
Featured image
@else Select Featured Image @endif
Cancel
@push('scripts') @endpush