{!! Form::open(array('route' => array('stocks.history',$branch->branch_code), 'class' => 'form-horizontal form-label-left', 'method' => 'GET')) !!}
{!! Form::select('category[]',$sel_categories, null, array('id' => 'category', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT A CATEGORY...')) !!}
{!! Form::select('brand[]',$sel_brands, null, array('id' => 'brand', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT A BRAND...')) !!}
{!! Form::select('status[]', $stock_status, null, array('id' => 'stock_status', 'class' => 'form-control' ,'multiple' => 'multiple' ,'data-placeholder' => 'SELECT DIVISION')) !!}
{!! Form::text('keyword',null,array('class' => 'form-control', 'id' => 'keyword','placeholder' =>'Enter Item')) !!}
{!! Form::close() !!}

Items

{!! $items->render() !!} {!! Paginate::show($items) !!}
@if(count($items) > 0) @foreach($items as $item) @endforeach @else @endif
Barcode Category ItemCode Description Quantity
{{ $item->barcode }} {{ $item->category }} {{ $item->itemcode }} {{ $item->description }} {{ $item->qty }}
No record found

Item Movement Report

@if(count($histories) > 0) @foreach($histories as $history) @endforeach @else @endif
Date Beginning Inventory Ending Inventory
{{ $history->transaction_date }} {{ $history->begining }} {{ $history->ending }}
No record found