@extends('nexus.layouts.app') @section('page-title', 'Blog') @section('sys-mode', 'BLOG') @section('head') @endsection @section('content') @if(session('status'))
{{ session('status') }}
@endif {{-- METRIC ROW --}}
Total Posts
{{ $metrics['total_posts'] }}
Categories Used
{{ $metrics['categories_used'] }}
Authors
{{ $metrics['total_authors'] }}
Last Published
{{ $metrics['last_published'] ?? '—' }}
{{-- POST TABLE --}}
Post Registry {{ count($posts) }} entries
@forelse($posts as $p) @empty @endforelse
Title Category Author Updated Actions
{{ $p['title'] }}
{{ $p['slug'] }}
{{ $p['category'] }} {{ $p['author'] }} {{ $p['updated_at'] ?? '—' }} View Edit
@csrf @method('DELETE')
No posts yet. Create the first one.
@endsection