@extends('layouts.app') @section('title', 'Dashboard de Reportes') @section('content')

Dashboard de Reportes

Análisis y reportes de todas las áreas del sistema

Ventas
Hoy ${{ number_format($stats['sales']['today'] ?? 0, 2) }}
Este mes ${{ number_format($stats['sales']['this_month'] ?? 0, 2) }}
Facturas {{ number_format($stats['sales']['total_invoices'] ?? 0) }}
Compras
Hoy ${{ number_format($stats['purchases']['today'] ?? 0, 2) }}
Este mes ${{ number_format($stats['purchases']['this_month'] ?? 0, 2) }}
Facturas {{ number_format($stats['purchases']['total_invoices'] ?? 0) }}
Inventario
Productos {{ number_format($stats['inventory']['total_products'] ?? 0) }}
Valor Total ${{ number_format($stats['inventory']['total_value'] ?? 0, 2) }}
Stock Bajo {{ number_format($stats['inventory']['low_stock'] ?? 0) }}
Cuentas
Por Cobrar ${{ number_format($stats['accounts']['receivable_total'] ?? 0, 2) }}
Por Pagar ${{ number_format($stats['accounts']['payable_total'] ?? 0, 2) }}
Vencidas ${{ number_format($stats['accounts']['receivable_overdue'] ?? 0, 2) }}
Gestor
Reportes de clientes, proveedores y vendedores
Recursos Humanos
Reportes de empleados y nómina
@push('styles') @endpush @push('scripts') @endpush @endsection