@extends('layouts.admin') @section('title', 'Blog manager') @section('content')

{{ $posts->total() }} posts

New post
@forelse($posts as $post) @empty @endforelse
Title Status Published Actions
{{ $post->title }}
/blog/{{ $post->slug }}
{{ $post->is_published ? 'Published' : 'Draft' }} {{ $post->published_at?->format('M j, Y') ?? '-' }} Edit
@csrf @method('DELETE')
No posts yet.
{{ $posts->links('pagination::bootstrap-5') }}
@endsection