@extends('layouts.admin') @section('title', 'Dashboard') @push('head') @endpush @section('content')

JOTI Journal Dashboard

Overview of all content and users in the system.

{{-- ─────────── Content / user stat cards ─────────── --}}
@foreach ($stats as $stat) @php $hasRoute = $stat['route'] && \Illuminate\Support\Facades\Route::has($stat['route']); @endphp
@endforeach
{{-- ─────────── Recent additions feed ─────────── --}}
Recent Additions
Latest items across all content types
@forelse ($recent as $r) @php $canView = \Illuminate\Support\Facades\Route::has('user.item.view'); $humanType = ucwords(str_replace('_', ' ', $r['type'])); $rowTagOpen = $canView ? '' : ''; @endphp {!! $rowTagOpen !!} {{ $humanType }} {{ $r['label'] }} {{ $r['created_at'] ? \Carbon\Carbon::parse($r['created_at'])->diffForHumans() : 'unknown date' }} {!! $rowTagClose !!} @empty

No content has been added yet.

@endforelse
@endsection