{!! 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')) !!}
Items
{!! $items->render() !!}
{!! Paginate::show($items) !!}
| Barcode | Category | ItemCode | Description | Quantity |
|---|---|---|---|---|
| {{ $item->barcode }} | {{ $item->category }} | {{ $item->itemcode }} | {{ $item->description }} | {{ $item->qty }} |
| No record found | ||||
Item Movement Report
| Date | Beginning Inventory | Ending Inventory |
|---|---|---|
| {{ $history->transaction_date }} | {{ $history->begining }} | {{ $history->ending }} |
| No record found | ||