@foreach($ventaProductos as $ventaProducto) @endforeach
Venta Id Producto Id Cantidad Productos Action
{!! $ventaProducto->venta_id !!} {!! $ventaProducto->producto_id !!} {!! $ventaProducto->cantidad_productos !!} {!! Form::open(['route' => ['ventaProductos.destroy', $ventaProducto->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}