@extends('layouts.admin') @section('header', 'Blog Management') @section('content')
| ID | Title | Category | Image | Created | Actions |
|---|---|---|---|---|---|
| {{ $blog->id }} | {{ $blog->title }} | {{ $blog->category->name ?? 'Uncategorized' }} |
@if($blog->image)
|
{{ $blog->created_at->format('M d, Y') }} | |
|
No blogs found |
|||||