@extends('layouts.admin-layout') @section('title', 'All Blogs') @section('content')

Blog List

Add New Blog
@foreach($blogs as $key => $blog) @endforeach
# Image Title Actions
{{ $key + 1 }} Image {{ $blog->heading ?? '' }} Edit
@csrf @method('DELETE')
@endsection @section('script') @endsection