@extends('app')
@section('content')
@if($current_module)
{!! Form::open([
'action' => ['ExecutivesController@putUpdateFeedbackAnswers', $executive->employee_number],
'method' => 'PUT'
]) !!}
@foreach($quadrants as $quadrant => $questions)
(0/{{$questions->count()}})
{{ $quadrant }}
@foreach($questions as $question)
{{$question->question}} |
{!! Form::checkbox("feedback_answers[]", $question->id, $executive->feedbackQuestions->where('id', $question->id)->count() > 0) !!}
|
@endforeach
@endforeach
{!!Form::submit('Actualizar', ['class' => 'btn btn-primary btn-lg'] )!!}
{!! Form::close() !!}
@else
El ejecutivo ha concluído todos los módulos
@endif
@endsection
@section('script')
{!! Html::script('js/executives/show.js') !!}
@endsection