@extends('layouts.admin') @section('header', 'Blog Management') @section('content')

Manage Blog Posts

Create New Blog
@forelse($blogs as $blog) @empty @endforelse
ID Title Category Image Created Actions
{{ $blog->id }} {{ $blog->title }} {{ $blog->category->name ?? 'Uncategorized' }} @if($blog->image) {{ $blog->title }} @else
@endif
{{ $blog->created_at->format('M d, Y') }}
@csrf @method('DELETE')

No blogs found

@if($blogs->hasPages())
{{ $blogs->links() }}
@endif
@endsection