@extends('layouts.master') @section('link') @include('layouts.header') @stop @section('content') {!! Form::open(array('url'=>'numstaff/search', 'class'=>'form-inline', 'id'=>'SubmitForm','method'=>'Post')) !!} {!! Form::hidden('IsBack','false', ['id'=>'IsBack']) !!} {!! Form::hidden('IsTeamGroup','false', ['id'=>'IsTeamGroup']) !!} {!! Form::hidden('IsChangeValue','false', ['id'=>'IsChangeValue']) !!}
@if(count(Session::get('_flash')['new']) >0) @foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

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

@endif @endforeach @endif

個人別の結果履歴閲覧

@if(Auth::user()->auth === 3) @else
検索条件
@endif

個人結果:{{ $TotalPoint }}/{{ $TotalScoreAllocation }} 点

@if(count($SearchResult)>0) @foreach($SearchResult as $index => $data)
数値指標:{{ $index +1 }}

{{ $data->numberical_name }}

成果({{ $data->unit }})
4月
5月
6月
7月
8月
9月
10月
11月
12月
1月
2月
3月
@if($data->input_method === Config::get('cd_const.INPUT_METHOD_BULK')) {!! Form::cd_label(Config::get('cd_const.INPUT_METHOD'), $data->input_method) !!} @else {!! Form::cd_label(Config::get('cd_const.AGGREGATE_PATTERN'), $data->mst_aggregate_pattern) !!} @endIf
{{ $data->unit }}
得点
@if(isset($data->score))

{{ $data->score }}/{{ $data->allocation_of_marks }}

@else

-/{{ $data->allocation_of_marks }}

@endIf
@endforeach @endif
{!! Form::close() !!} @stop @include ('layouts.footer')