RELACIÓN FAMILIAR
Relación del estudiante con la familia
{{ Form::label('','Con el padre la relación es:') }}
@if(count($relationFather)>0)
@foreach($relationFather as $father)
@if(isset($father->selected))
{{ Form::label('',$father->name_dca)}}
@endif
@endforeach
@endif
{{ Form::label('','Con la madre la relación es:') }}
@if(count($relationMother)>0)
@foreach($relationMother as $mother)
@if(isset($mother->selected))
{{ Form::label('',$mother->name_dca)}}
@endif
@endforeach
@endif
Conducta
{{ Form::label('','Conducta(s) frecuente(s):') }}
@if(count($behavior)>0)
@foreach($behavior as $option)
@if(isset($mother->selected))
{{ Form::label('',$option->name_dca)}}
|
{{ Form::label('','Sí')}}
|
@else
{{ Form::label('',$option->name_dca)}}
|
{{ Form::label('','No')}}
|
@endif
@endforeach
@endif
{{ Form::label('','¿Con quién pasa su hijo(a) en la tarde:?') }}
@if(isset($dceYearData->who_cares_afternoon))
{{ Form::label('',$dceYearData->who_cares_afternoon)}}
|
@else
{{ Form::label('','No Disponible')}}
|
@endif
{{ Form::label('','¿Cuánto tiempo comparte diariamente con su hijo?:') }}
@if(isset($dceYearData->time_share_with_parents))
{{ Form::label('',$dceYearData->time_share_with_parents)}}
|
@else
{{ Form::label('','No Disponible')}}
|
@endif