@extends('layout.sidebar')
@section('content')
@section('title','Calcular escalafón de empleado')
{{ Form::hidden('hdnRecalculateTraining', action('RecalculateEmployeeScaleController@postTraining', array()), array('id'=>'hdnRecalculateTraining')) }}
{{ Form::hidden('hdnRecalcultaExpereience', action('RecalculateEmployeeScaleController@postExperience', array()), array('id'=>'hdnRecalcultaExpereience')) }}
ESCALAFÓN
{{ Form::open(array('url' => action('RecalculateEmployeeScaleController@postGenerateReport'), 'class' => 'form-signin', 'method' => 'POST','id'=>'')) }}
#
|
EMPLEADO
|
CAPACITACIÓN
|
EXPERIENCIA
|
IMPRIMIR ESCALAFÓN
|
@foreach($employees as $employee)
|
|
|
|
|
@endforeach
|
|
|
|
|
{{ HTML::script('js/employee/recalculateScale/index.js') }}
{{ HTML::script('js/common/feature-table.js') }}
{{ HTML::style('css/common/feature-table.css') }}
{{Form::close()}}
@stop