Nhập, xuất kho
{!! Form::open(array('url' => route('depots.history.store'), 'method' => 'post', 'files'=> true, 'id'=>'validateForm','autocomplete'=>'off')) !!}
{!! Form::label('depot_id', 'Mã', array('class' => 'control-label required')) !!} {!! Form::select('depot_id', $deposts, null, array('id'=>'depot_id','class' => 'form-control square','placeholder'=>'--Chọn kho--')) !!}
{!! Form::label('status', 'Nghiệp vụ kho', array('class' => 'control-label required')) !!} {!! Form::select('status', $status, null, array('id'=>'status','class' => 'form-control square','placeholder'=>'--Nghiệp vụ kho--')) !!}
{!! Form::label('note', 'Ghi chú', array('class' => 'control-label required')) !!} {!! Form::text('note', null, array('class' => 'form-control')) !!}
{!! Form::label('', 'Sản phẩm', array('class' => 'control-label required')) !!} {!! Form::select('product_id', $products, null, array('id'=>'product_id','class' => 'form-control square select2','placeholder'=>'--Chọn sản phẩm--')) !!} {{----}}
{{ Form::close() }}