@if (Helpers::strEqual($index, 'new')) Use this utility to create a new decision. Click "Add" to save this decision to the form. @elseif (Helpers::strEqual($index, 'internal')) Use this utility to add an internal decision note for OSAA staff to process this form. Click "Save" when finished. @else Use this utility to edit this existing decision. Click "Save" to save changes to the form. @endif
{{ Form::open(array('url' => url('/forms/eligibility/' . $object->waiver->id . '/decisions'), 'method' => 'POST', 'style' => 'font-size: 10pt;')) }} {{ Form::hidden('redirect', url('/forms/eligibility/' . $object->waiver->id . '/edit')) }} {{ Form::hidden('waiver_id', $object->waiver->id) }} @if (is_numeric($index)) {{ Form::hidden('index', $decision->index) }} @endif {{-- Internal Notes --}} @if (Helpers::strEqual($index, 'internal')) {{ Form::hidden('internal', true) }} {{ Form::label('type', 'Decision Type', array('style' => 'width: 125px;')) }} {{ Form::select('type', $options['decision_types'], '', array('style' => '')) }} Who made the decision?

{{ Form::label('decided_at', 'Decided At', array('style' => 'width: 125px;'))}} {{ Form::text('decided_at', date('m/d/Y', time()), array('style' => 'width: 100px;', 'data-date-picker' => true)) }} When was the decision made?

{{ Form::label('is_eligible', 'Decision', array('style' => 'width: 125px;')) }} {{ Form::select('is_eligible', $options['decisions'], '', array('style' => '')) }} What was the decision? Eligible or not eligible?

{{ Form::label('eligible_at', 'Eligible At', array('style' => 'width: 125px;'))}} {{ Form::text('eligible_at', date('m/d/Y', time()), array('style' => 'width: 100px;', 'data-date-picker' => true)) }} When is the student eligible? Leave blank if not eligible.

{{ Form::label('template_letter', 'Letter Template', array('style' => 'width: 125px;')) }} {{ Form::select('template_letter', $options['letters'], $object->data->template_letter, array('style' => '')) }} Select the letter template.

{{ Form::label('notes', 'Notes', array('style' => 'width: 125px;'))}} {{ Form::textarea('notes', '', array('style' => 'width: 500px; height: 4em;')) }}

When you save this information, the form's status will not change. Only Amerilyn will be notified via e-mail that a decision has been made with the information you provide above.

{{-- Add/Edit a Decision --}} @else {{ Form::label('type', 'Decision Type', array('style' => 'width: 125px;')) }} {{ Form::select('type', $options['decision_types'], $decision->type, array('style' => '')) }} Who made the decision?

{{ Form::label('decided_at', 'Decided At', array('style' => 'width: 125px;'))}} {{ Form::text('decided_at', $decision->decided_at, array('style' => 'width: 100px;', 'data-date-picker' => true)) }} When was the decision made?

{{ Form::label('is_eligible', 'Decision', array('style' => 'width: 125px;')) }} {{ Form::select('is_eligible', $options['decisions'], ($decision->is_eligible) ? 1 : 0, array('style' => '')) }} What was the decision? Eligible or not eligible?

{{ Form::label('eligible_at', 'Eligible At', array('style' => 'width: 125px;'))}} {{ Form::text('eligible_at', $decision->eligible_at, array('style' => 'width: 100px;', 'data-date-picker' => true)) }} When is the student eligible? Leave blank if not eligible.

{{ Form::label('notes', 'Notes', array('style' => 'width: 125px;'))}} {{ Form::textarea('notes', $decision->notes, array('style' => 'width: 500px; height: 3em;')) }} @if (is_null($decision->index))

When you add this decision, the waiver form's status will change from {{ $object->waiver_status->slug }} to DONE. @endif


Fatal error: Class 'Helpers' not found in /home/osaa/web_app/dev/app/views/eligibility/add_edit_decision.blade.php on line 149