@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
@foreach($blogs as $blog) @endforeach
Article Category Publish Date SEO Actions

{{ $blog->title }}

{{ $blog->category->name ?? 'Uncategorized' }} {{ $blog->published_at ? \Carbon\Carbon::parse($blog->published_at)->format('M d, Y') : 'Draft' }} {{ $blog->meta_title ? 'Optimized' : 'Missing' }}
@csrf @method('DELETE')
{{ $blogs->links() }}
@endsection