{{-- resources/views/admin/posts/index.blade.php --}} @extends('layouts.admin') @section('title', 'Blog') @section('breadcrumb') Dashboard Blog @endsection @section('content')
{{ $posts->total() }} total posts
| Title | Author | Category | Status | SEO | Published | Actions |
|---|---|---|---|---|---|---|
|
{{ Str::limit($post->title, 50) }}
/blog/{{ $post->slug }}
|
|
{{ $post->category?->name ?? '—' }} | {{ ucfirst(str_replace('_',' ',$post->status)) }} |
@php $score = app(\App\Services\SEO\SeoScoringService::class)->score($post) @endphp
|
{{ $post->published_at?->format('d M Y') ?? '—' }} |
@can('posts.edit')
Edit
@endcan
@if($post->isDraft())
@can('posts.create')
@endcan
@endif
@if($post->isPendingReview())
@can('posts.approve')
@endcan
@endif
|
|
No posts yet
Share your expertise. Create your first blog post to start building search authority. @can('posts.create') Write First Post @endcan | ||||||