@extends('layouts.adminpages') @section('content')
Ventas

@if (session('status'))
{{ session('status') }}
@endif
@if($errors->all())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif
@foreach($products as $item) @endforeach
Nombre Cantidad Subtotal
{{$item->productId($item->product_id)->name}} {{$item->quantity}} {{$item->subtotal}}
{{$products->links()}}
@endsection