Product sssssPurchase List of Last 7 Days

@if(isset($productorderlist) && count($productorderlist)>0)
@php($i = 1) @foreach($productorderlist as $productorder) @php($i++) @endforeach
{{Form::text('SearchProduct','',['class'=>'form-control', 'id'=>'search', 'placeholder'=>'Search Product'])}} Quantity(Ltr) Amount(Rs) Invoice No. Density Vehicle No. Purchase Date
{{$productorder->productName}} {{round($productorder->quantity,2)}} {{$util->numberFormat($productorder->amount)}} {{$productorder->invoiceNo}} {{$util->numberFormat($productorder->density)}} {{$productorder->vehicleNo}} {{$util->dateFormat($productorder->orderDate,1)}}
@foreach($productorder->tankOrder as $tanks) @endforeach
Tank Name Distribution Date Dip Dip Qty Quantity(Ltr)
{{$tanks->tankName}} {{$util->dateFormat($tanks->tankPurchaseDate,1)}} {{$tanks->dip}} {{$tanks->dipQty}} {{$tanks->TankpurchaseQty}}
{{$productorderlist->links()}}
@else
No Existing Product Purchase Records Found.
@endif