{!! Form::open(array('route' => array('notyet.post'), 'class' => 'form-horizontal form-label-left', 'method' => 'POST')) !!}
{!! Form::select('company[]', $companies, null, array('id' => 'company', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT DIVISION')) !!}
{!! Form::select('branch[]',$sel_branches, $sel_branches, array('id' => 'branch', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT A BRANCH...')) !!}
{!! Form::text('date_from',$date_from,array('class' => 'form-control', 'id' => 'date_from')) !!}
{!! Form::text('date_to',$date_to,array('class' => 'form-control', 'id' => 'date_to')) !!}
{!! Form::select('purpose[]', $sel_purpose, $sel_purpose, array('id' => 'purpose', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT PURPOSE')) !!}
{!! Form::select('reason[]',$sel_reason, $sel_reason, array('id' => 'reason', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT A REASON')) !!}
{!! Form::close() !!}

Not Yet Received Items Report

Total Qty: {!! $total_qty !!}

@foreach($items as $item) @endforeach
Company Name Branch Name Terminal # User Outgoing # To Company Name To Branch Name Date Time Box # Pouch # Pouch Unique Code Barcode Department Category Description Qty Price Amount Purpose Reason Remarks Posting Time
{{ $item->company_name }} {{ $item->branch_name }} {{ $item->terminal_no }} {{ $item->user }} {{ $item->outgoing_no }} {{ $item->to_company }} {{ $item->to_branch }} {{ $item->local_time }} {{ $item->box_no }} {{ $item->pouch_no }} {{ $item->unique_code }} {{ $item->barcode }} {{ $item->department }} {{ $item->category }} {{ $item->description }} {{ $item->qty }} {{ number_format($item->price,2) }} {{ number_format($item->amount,2) }} {{ $item->purpose }} {{ $item->reason }} {{ $item->remarks }} {{ $item->local_time }}
@endsection