@extends('layouts.AdminMaster') @section('content')
{!! Form::open(['url'=>'admin/reports/sales/product/report','method'=>'post']) !!}
{!! Form::close() !!} @if(isset($orders))
@foreach($orders as $order) @endforeach
# Invoice No Date Amount Qty
{{++$x}} {{$order->invoice->invoice_id}} {{$order->invoice->date}} {{$order->invoice->total}} {{$order->qty}}
@endif
@endsection