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

Preview

Total Purchase Orders {{number_format($report->total_pos)}}
@if (\Session::has('success'))
@endif @if (\Session::has('error'))
@endif

Purchase Orders

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

{{ Form::open(array( 'action' => 'ReportingController@getPOsList','class'=>'form-horizontal','files' => true,'role' => 'form','method' => 'GET')) }}
{{ $pos->appends(Request::except('page'))->links() }} {{ Form::close() }}
@if(count($pos) > 0) {{ Form::open(array( 'action' => 'ReportingController@getPOsReportDownload','class'=>'form-horizontal','files' => true,'role' => 'form','method' => 'GET')) }}
{{ Form::close() }}
@endif
{{ $pos->appends(Request::except('page'))->links() }}
@foreach($pos as $po) @endforeach
PO# Vendor Name Location Total Amount Paid Amount Balance PO Status Invoice
{{$po->po_number}} {{$po->vendor_name}} {{$po->location}} {{number_format($po->grand_total)}} {{number_format($po->paid_amount)}} {{number_format($po->balance)}} {{$po->po_status}}
@include('layouts.footer')