@extends('layouts/pos_layout') @section('title', '| '. $data['pageTitle'] ) @section('content')
{!! $data['pageTitle'] !!}
Employee Info
{!! Form::open(array('url' => url('pos/reporting-boss-config-store'), 'class'=>'form','method'=>'post')) !!}
{!! Form::label('group_id_fk', 'Group', ['class' => 'control-label']) !!} {!! Form::select('group_id_fk', [''=>'Select any' ] + $data['groupData'], $data['model']->group_id_fk, ['class' => 'form-control getCompany', 'id' => 'group_id_fk']) !!}

{{ $errors->first('group_id_fk') }}

{!! Form::label('company_id_fk', 'Company', ['class' => 'control-label']) !!} {!! Form::select('company_id_fk', [''=>'Select any'], $data['model']->company_id_fk, ['class' => 'form-control getProject', 'id' => 'company_id_fk']) !!}

{{ $errors->first('company_id_fk') }}

{!! Form::label('project_id_fk', 'Project', ['class' => 'control-label']) !!} {!! Form::select('project_id_fk', [''=>'Select any'], $data['model']->project_id_fk, ['class' => 'form-control', 'id' => 'project_id_fk']) !!}

{{ $errors->first('project_id_fk') }}

{!! Form::label('effect_date', 'Effect Date', ['class' => 'control-label']) !!} {!! Form::text('effect_date',null, ['class' => 'form-control datepicker','autocomplete'=>'off']) !!}

{{ $errors->first('effect_date') }}

{!! Form::label('settings_for', 'Applicable For', ['class' => 'control-label']) !!} {!! Form::select('settings_for', [''=>'Select any' ] + $data['settingsFor'], null, ['class' => 'form-control']) !!}

{{ $errors->first('settings_for') }}

{!! Form::label('configuration_for', 'Configuration For', ['class' => 'control-label']) !!} {!! Form::select('configuration_for',[''=>'Select any' ] + $data['configurationFor'], null, ['class' => 'form-control']) !!}

{{ $errors->first('configuration_for') }}

{{--
--}}

Boss Selection
Steps Employee From Designation Department Actions
{!! Form::text('step_index[]','1',['class' => 'form-control text-center js-step', 'required'=>'required','readonly'=>'readonly']) !!} {!! Form::select('employee_from[]', [''=>'Select any' ] + $data['settingsFor'],null, ['class' => 'form-control js-employeeform', 'required'=>'required']) !!} {!! Form::select('boss_position_id_fk[]', [''=>'Select any' ] + $data['designations'],null, ['class' => 'form-control js-designation', 'required'=>'required']) !!} {!! Form::select('boss_department_id_fk[]',[''=>'Select any' ] + $data['departmentList'],null,['class' => 'form-control js-employee']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}
@endsection