@extends('backEnd.layouts.master') @section('title', 'Blogs') @section('content')

Blogs

Manage blog posts
Add Post
@forelse($blogs as $i => $blog) @empty @endforelse
#TitleCategoryStatusPublishedActions
{{ $blogs->firstItem() + $i }} {{ $blog->title }} {{ $blog->category?->name ?? '—' }} {{ $blog->status ? 'Published' : 'Draft' }} {{ $blog->published_at?->format('d M Y') ?? '—' }}
@csrf @method('DELETE')
No blog posts yet.
@if($blogs->hasPages())
{{ $blogs->links() }}
@endif
@endsection