@extends('layouts.admin') @section('title', 'Blog Posts') @section('content_header')

Blog Posts

@stop @section('content')

List of Blog Posts

@foreach($blogs as $post) @endforeach
Sr. No. Title Category Image Actions
{{ $loop->iteration }} {{ $post->title }} {{ $post->category->name ?? 'N/A' }} @if($post->image) Blog Image @else N/A @endif View Edit
@csrf @method('DELETE')
@stop