昇格要件[研修及び訓練の受講]
職位獲得に必要な研修及び訓練:
@foreach($page_1['mst_position_up_req_lectures'] as $mst_position_up_req_lecture)
@php
$mst_position_up_req_lecture_count = 0;
@endphp
@foreach($mst_position_up_req_lecture as $mst_lectures)
@php
$mst_lectures_count = 0;
@endphp
@foreach($mst_lectures as $key => $mst_lecture)
@if($mst_position_up_req_lecture_count === 0 && $key === 0)
{{$mst_lecture->mst_position_name}}
@endif
@if($mst_lectures_count === 0 && $key === 0)
@php
$class_checkbox = $mst_lecture->allcheck === 1 ? 'glyphicon-check' : 'glyphicon-unchecked';
if($mst_lecture->pattern === 1){
$titleCheck = '以下のすべての研修及び訓練を受講していること';
}else if($mst_lecture->pattern === 2){
$titleCheck = '以下のいずれかの研修及び訓練を'.$mst_lecture->necessary_num.'つ以上受講していること';
}else{
$titleCheck = '';
}
@endphp
{{$titleCheck}}
@endif
@php
$mst_position_up_req_lecture_count++;
$mst_lectures_count++;
$lecture_checkbox = $mst_lecture->checked !== null ? 'glyphicon-check' : 'glyphicon-unchecked';
@endphp
{{sprintf("%s(主催:%s)", $mst_lecture->name, $mst_lecture->promoter)}}
@endforeach
@endforeach
@endforeach
取得済みの研修及び訓練:
@foreach ($page_1['mst_lectures'] as $trzLecture)
{{sprintf("・%s(主催:%s) %s", $trzLecture->name, $trzLecture->promoter,$trzLecture->attending_date)}}
@endforeach
今後取得が必要な研修及び訓練:
@foreach($page_1['mst_position_up_req_lectures'] as $mst_position_up_req_lecture)
@foreach($mst_position_up_req_lecture as $mst_lectures)
@foreach($mst_lectures as $mst_lecture)
@if(is_null($mst_lecture->checked))
{{sprintf("・%s(主催:%s)", $mst_lecture->name, $mst_lecture->promoter)}}
@endif
@endforeach
@endforeach
@endforeach