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

Total Clientes

{{ $totales['clients'] }}

Total Productos

{{ $totales['products'] }}

Compras

{{ number_format($montosTotal['compras'], 2) }}

Ventas

{{ number_format($montosTotal['ventas'], 2) }}
@if ($ventasPorSemana || $comprasPorSemana)

Compras y Ventas por Semana

@endif @if ($ventas || $compras)

Compras y Ventas por Mes

@endif
@endsection @section('js') @stop