@include('pdf.partials.styles-unified')

REPORTE ADICIONAL DE VENTAS | {{ $empresa->name }}

Total de Adicionales: {{ $records->count() }}

Generado: {{ now()->format('d/m/Y H:i:s') }}

@php $index = 1; @endphp @forelse($records as $item) @empty @endforelse
Fecha Serie Venta Cliente Descripción Usuario Monto
{{ $index++ }} {{ \Carbon\Carbon::parse($item->fecha)->format('d/m/Y') }} @if($item->venta) {{ $item->venta->serie_venta }} @else N/A @endif @if($item->venta && $item->venta->cliente) {{ $item->venta->cliente->razon_social }} @else N/A @endif {{ $item->descripcion }} @if($item->user) {{ $item->user->name }} @else N/A @endif S/ {{ number_format($item->monto, 2) }}
No hay adicionales de ventas registrados
TOTAL DE ADICIONALES: S/ {{ number_format($totals->total_monto ?? 0, 2) }}