@include('layouts.head')
@include('layouts.header') @include('layouts.sidebar')

Preview

Total Products {{number_format($report->total_pdts)}}
Total Qty {{ number_format($report->total_qty) }}
@if (\Session::has('success'))
@endif @if (\Session::has('error'))
@endif

Products

{{ Form::open(array( 'action' => 'ReportingController@getProductsList','class'=>'form-horizontal','files' => true,'role' => 'form','method' => 'GET')) }}
{{ Form::close() }}

{{ Form::open(array( 'action' => 'ReportingController@getProductsList','class'=>'form-horizontal','files' => true,'role' => 'form','method' => 'GET')) }}
{{ $products->appends(Request::except('page'))->links() }} {{ Form::close() }}
@if(count($products) > 0) {{ Form::open(array( 'action' => 'ReportingController@getProductsReportDownload','class'=>'form-horizontal','files' => true,'role' => 'form','method' => 'GET')) }}
{{ Form::close() }}
@endif
{{ $products->appends(Request::except('page'))->links() }}
@foreach($products as $fp) @endforeach
WO# Product Code Description Location Qty Cost Price Unit Price Assemble By Invoice
{{$fp->wo_number}} {{$fp->product_code}} {{$fp->description}} {{$fp->location}} {{$fp->qty}} {{$fp->cost_price}} {{$fp->unit_price}} {{$fp->assemble_by}}
@include('layouts.footer')