@extends('tenant.layouts.master') @section('title', $tenant->name.' Dashboard') @section('page-title', $tenant->name) @section('breadcrumbs')@endsection @push('tenant-styles') @endpush @php $cards = [ ['emoji' => '📄', 'label' => 'Total Pages', 'value' => $stats['pages'], 'tone' => 'primary'], ['emoji' => '🧩', 'label' => 'Total Sections', 'value' => $stats['sections'], 'tone' => 'success'], ['emoji' => '🗂️', 'label' => 'Total Collections', 'value' => $stats['collections'], 'tone' => 'danger'], ['emoji' => '🗃️', 'label' => 'Total Records', 'value' => $stats['records'], 'tone' => 'warning'], ]; @endphp @section('content')

📊 Dashboard Overview

{{-- Summary Cards --}}
@foreach ($cards as $card)
{{ $card['emoji'] }}
{{ $card['label'] }}

{{ number_format($card['value']) }}

@endforeach
{{-- Charts Row 1 --}}

Content Overview

Sections by Type

{{-- Charts Row 2 --}}

Records per Collection

Sections per Page

@endsection @push('tenant-scripts') @endpush