@extends('admin.template') @section('content')

8

Nuevos Envíos

42

Conductores

27

Clientes

13

Productos y/o Servicios

S/{{ number_format($bills, 2, '.', '') }}
Gastos
S/{{ number_format($bills_former, 2, '.', '') }} Gastos más que el mes pasado.
Ganancia
Último mes

{{ number_format($billing_profit + $sale_note_profit, 2, '.', '') }}

Clientes Potenciales
Reporte Mensual

{{ count($billings) + count($sale_notes) == 0 ? 0 : count($clients) }}

Informe de Ingresos

S/{{ number_format($ganancias, 2, '.', '') }}

Resumen de productos más vendidos
@forelse ($sales_products as $item) @empty @endforelse
Código Descripción Cantidad Importe

{{ $item["codigo"] }}

{{ $item["producto"] }}

{{ intval($item["cantidad"]) }}

{{ number_format($item["precio_total"], 2, '.', '') }}

Sin datos

Resumen de ventas por cliente
@forelse ($sales_clients as $item) @empty @endforelse
RUC/DNI Razón Social Cantidad Importe

{{ $item['dni_ruc'] }}

{{ $item['cliente'] }}

{{ $item["cantidad_ventas"] }}

{{ number_format($item['total'], 2, '.', '') }}

Sin datos

@endsection @section('scripts') @include('admin.js-home-dashboard') @endsection