{{ Form::model($item,array('route' => array((!$item->exists) ? 'item.store':'item.update',$item->pk()),
'class'=>'modal-content','id'=>'item-form','method'=>(!$item->exists) ? 'POST' : 'PUT')) }}
{!! App\Console\Commands\Generator\Form::input('nama','text',['required'=>'required'])->model($item)->show() !!}
{!! App\Console\Commands\Generator\Form::input('harga','text',['required'=>'required'])->model($item)->show() !!}