@extends('tenant.layouts.master')
@section('title', $tenant->name.' Dashboard')
@section('page-title', $tenant->name)
@section('breadcrumbs')
Dashboard@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 --}}
{{-- Charts Row 2 --}}
@endsection
@push('tenant-scripts')
@endpush