{!! Form::open(['url' => action('ProductionCostingController@processRecipeCostSetup'), 'method' => 'post', 'id' => 'decompose_setup' ]) !!}

Add New Production Costing

{!! Form::label('main_category', 'Choose Product Category:*') !!} {!! Form::select('main_category', $categories->pluck('name', 'id'), null, ['class' => 'form-control select2','required', 'placeholder' => __( 'messages.please_select' )]); !!}
{!! Form::label('finished_product', 'Choose Finished Product:*') !!} {!! Form::select('finished_product', array(), null, ['class' => 'form-control select2','required', 'placeholder' => __( 'messages.please_select' )]); !!}
{!! Form::label('production_qty', 'Expected Output Qty:*') !!} {!! Form::text('production_qty', null, ['class' => 'form-control input_number','required', 'placeholder' => 'Input Expected Output']); !!}
{!! Form::label('require_production', 'Require Production:*') !!} {!! Form::select('require_production', $yesno,null, ['class' => 'form-control input_number select2','required', 'placeholder' => 'Choose Option']); !!}
{!! Form::text('search_product', null, ['class' => 'form-control mousetrap', 'id' => 'search_product', 'placeholder' => __('lang_v1.search_product_placeholder'),'disabled'=>'true']); !!}
Raw Material @lang('sale.qty')
{!! Form::close() !!}