{{ $this->form }}
Actualizar
@php $summary = $this->getSummary(); @endphp
{{ $summary['total_invoices'] }}
Facturas en el período
$ {{ number_format($summary['total_amount'], 2, ',', '.') }}
Total facturado
{{ $summary['total_items'] }}
Unidades vendidas
Artículos vendidos Desglose por artículo en el período seleccionado.
@forelse($this->getArticlesSold() as $row) @empty @endforelse
Código Artículo Cantidad Monto Facturas
{{ $row->code }} {{ \Str::limit($row->name, 50) }} {{ number_format($row->quantity, 0, ',', '.') }} $ {{ number_format($row->amount, 2, ',', '.') }} {{ $row->invoices_count }}
No hay ventas en el período seleccionado.
Ventas por cliente Total facturado por cliente en el período.
@forelse($this->getSalesByClient() as $row) @empty @endforelse
Cliente Facturas Total
{{ $row->client_name }} {{ $row->invoices_count }} $ {{ number_format($row->total_amount, 2, ',', '.') }}
No hay ventas en el período seleccionado.