@extends('adminlte::page')
@section('content_header')
Ventas/Listado de ventas
@stop
@section('content')
Nro |
Fecha |
Precio total |
Productos |
Acciones |
@foreach($ventas as $venta)
{{$contador++}} |
{{$venta->fecha}} |
{{$venta->precio_total}} |
@foreach($venta->detallesVenta as $detalle)
- {{$detalle->producto->nombre.' - '.$detalle->cantidad.' Unidades'}}
@endforeach
|
|
@endforeach
@stop
@section('css')
@stop
@section('js')
@stop