@extends('admin.layouts.app')
@section('title', 'Blog Management')
@section('page-title', 'Automotive Blog')
@section('content')
Write and optimize blog posts for search engines and readers.
Write New Post
| Article |
Category |
Publish Date |
SEO |
Actions |
@foreach($blogs as $blog)
|
|
{{ $blog->category->name ?? 'Uncategorized' }}
|
{{ $blog->published_at ? \Carbon\Carbon::parse($blog->published_at)->format('M d, Y') : 'Draft' }} |
{{ $blog->meta_title ? 'Optimized' : 'Missing' }}
|
|
@endforeach
{{ $blogs->links() }}
@endsection