@if( count($ventas) == 0)

No hay registro de borrados en Picza para el día seleccionado

@else

Resumen de borrados Picza

{{ $ventas[0]->created_at }}


@foreach ($ventas as $venta) @endforeach
Justificación Detalle Tipo de pago Total Fecha y hora
{{ $venta->justificacion }} {{ $venta->detalle }} {{ $venta->tipo_de_pago }} {{ $venta->total }} {{ $venta->created_at }}
Total @php $total = 0; for ( $i = 0 ; $i < count($ventas) ; $i++ ){ $total = $total + $ventas[$i]->total; } @endphp $ {{ number_format($total, 0, ",", ".")}}
@endif