{!!Form::horizondal_open()
->id('workOrderReportForm')
->secure()
->method('POST')
->files('true')
->enctype('multipart/form-data') !!}
{!! Form::select('search[category_id]')
-> options(Department::departments())
-> addGroupClass('form-group-sm')
-> label('Category')
-> placeholder('Select Category')
->id('category_id')
!!}
{!! Form::select('search[sub_category_id]')
// -> options(Department::departments())
-> addGroupClass('form-group-sm')
-> label('Subcategory')
-> placeholder('Select Subcategory')
->id('sub_category_id')
!!}
{!! Form::select('search[type]')
->options(['IP' => 'IP Feedback', 'OP' => 'OP Feedback'])
-> label(trans('Type'))
-> placeholder(trans('Please Select Capa Type'))
-> addGroupClass('form-group-sm')
!!}
{!! Form::select('search[capa_month]')
-> options(Capa::monthRange())
-> addGroupClass('form-group-sm')
-> label('Month and Year')
-> placeholder('Please Select Month and Year')
->id('category_id')
!!}
{!! Form::select('search[status]')
->options(['Pending' => 'Pending', 'Updated' => 'Updated','Closed' => 'Closed'])
-> label(trans('Status'))
-> placeholder(trans('Please Select Status'))
-> addGroupClass('form-group-sm')
!!}
{!!Form::close()!!}