{{-- ARCHIVO: resources/views/admin/superadmin/dashboard.blade.php --}} {{-- VERSIÓN: 2.1 - FIX FINAL ESTRUCTURA Y DATOS --}} @extends('layouts.admin') @section('title', 'Dashboard SuperAdmin - UrbanOSS') @push('styles') @endpush @section('content')
{{-- Header --}}

Dashboard SuperAdmin

Bienvenido al panel de control general

Global
{{-- Stats Row --}}
{{-- Card 1: Revenue --}}
Ingresos

{{ $stats['monthly_revenue'] ?? 'S/ 0' }}

{{-- Card 2: Users --}}
Usuarios

{{ $stats['total_users'] ?? 0 }}

{{ $stats['active_users'] ?? 0 }} Activos
{{-- Card 3: Condominios --}}
Condominios

{{ $stats['total_condominios'] ?? 0 }}

{{ $stats['active_condominios'] ?? 0 }} Activos
{{-- Card 4: Payments --}}
Pagos

{{ $stats['total_payments'] ?? 0 }}

{{ $stats['pending_payments'] ?? 0 }} Pendientes
{{-- Content Row --}}
{{-- Left: Condominios Table --}}
Condominios Recientes
Ver Todos
@forelse($condominios as $condominio) @empty @endforelse
Nombre Ubicación Estado Acciones
{{ $condominio->nombre }}
{{ Str::limit($condominio->direccion, 20) }} {{ ucfirst($condominio->estado) }}
No hay condominios registrados
{{-- Right: Actions --}}
@endsection