@extends('layouts.master') @section('link') @include('layouts.header') @stop @section('content')
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

{{ Session::get('alert-' . $msg) }} ×

@endif @endforeach

個人別の数値指標と職能基準の関連性設定

{{ Form::hidden('mst_index_viewpoint', '') }} {{ Form::hidden('mst_index_point', '') }} @foreach($mstIndexs as $key => $item) {{ Form::hidden('mst_index_viewpoint'.$item->id, $item->viewpoint) }} {{ Form::hidden('mst_index_point'.$item->id, $item->point) }} @endforeach
数値指標
職能基準
{{ Form::open( array('url'=>route('postCar020'), 'id'=>'FormPost', 'method'=>'post') ) }}
目標
{{ Form::n_select('mstNumericalIndividualIndexId', $mstNumericalIndividualIndexs, '', Message::get('C00001',['a']) , ['class' => 'form-control targetSelect'], null) }}
【評価観点】
【POINT】
【数値指標と職能基準との関連性及びその比重】
関連性の表示 個人評価への影響度
{{ Form::cd_label(Config::get('cd_const.RELATION'), Config::get('cd_const.RELATION_5')) }} 関連性が高い
{{ Form::cd_label(Config::get('cd_const.RELATION'), Config::get('cd_const.RELATION_4')) }}
{{ Form::cd_label(Config::get('cd_const.RELATION'), Config::get('cd_const.RELATION_3')) }}
{{ Form::cd_label(Config::get('cd_const.RELATION'), Config::get('cd_const.RELATION_2')) }}
{{ Form::cd_label(Config::get('cd_const.RELATION'), Config::get('cd_const.RELATION_1')) }} 関連性が低い
{{ Form::close() }}
@stop @section('optionalJs') @append @include ('layouts.footer')