@extends('layouts.admin') @section('page-title', 'Blog-Header & Blogs') @section('content')

All Blogs

@if($blogs->isEmpty())

No blogs found.

@else
@foreach($blogs as $index => $blog) @endforeach
Sr No. Image Title Category Author Published Date Actions
{{ $index + 1 }} Blog Image {{ $blog->title }} {{ $blog->category ?? 'General' }} {{ $blog->author->name ?? 'Admin' }} {{ $blog->published_date ? $blog->published_date->format('M d, Y') : 'N/A' }}
@csrf @method('DELETE')
@endif
@endsection