Type
{!! Form::select('type', $types, null, ['id' => 'type-select']) !!}
State
{!! Form::select('state', $states, null, ['id' => 'state-select']) !!}
@foreach($work_days as $day)
@php
$key = strtolower(substr($day, 0, 3));
$key_s = $key.'_start';
$key_f = $key.'_fin';
$val_s = null; $val_f = null;
@endphp
@endforeach