@extends('adminlte::page') @section('content_header')

Ventas/Listado de ventas


@stop @section('content')

Ventas registradas

Reporte @if($arqueoAbierto) Crear nuevo @else Abrir caja @endif
@foreach($ventas as $venta) @endforeach
Nro Fecha Precio total Productos Acciones
{{$contador++}} {{$venta->fecha}} {{$venta->precio_total}}
    @foreach($venta->detallesVenta as $detalle)
  • {{$detalle->producto->nombre.' - '.$detalle->cantidad.' Unidades'}}
  • @endforeach
@csrf @method('DELETE')
@stop @section('css') @stop @section('js') @stop