@extends('layouts.general') @section('layouts.header') @include('layouts.header') @stop @section('optionalCss') @stop @section('content')
{{--Begin flash message--}}
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg))

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

@endif @endforeach
{{--End flash message--}} {{--Begin flash message--}}
  • @{{form.errors.get(key)}}
{{--End flash message--}}

研修・訓練受講実績一括入力

{{csrf_field()}}
研修・訓練
受講終了日
時間数
時間
研修会
カテゴリ
{!! Form::n_select( 'LectureCategory', $LectureCategory, $Category, Message::get('C00001',['a']) , ['id' => 'LectureCategory', 'class' => 'form-control', 'onChange' => 'changeLectureCategory()' ], null) !!}
研修会名
@foreach($ListStaffs as $ListStaff) @endforeach
適用
氏名
備考
{{ $ListStaff->name }}
{{Form::textarea("note_$ListStaff->trz_member_id", null, [ "class" => "form-control textarea-control", "style" => "height: 35px;" ] )}}
@stop @section('modal') @include('layouts.modal') @stop @section('layouts.footer') @include ('layouts.footer') @stop @section('optionalJs') @append