|
|
|
@if( $user->have_children=='')
{{"-"}}
@else
{{ $user->have_children }}
@endif
|
|
|
|
{{ ($user->monthly_income??"-")}}
|
|
|
|
@if(!empty($user->EducationData->name))
{{$user->EducationData->name}}
@else
-
@endif
|
|
|
|
{{ ($user->graduate_year??"-")}}
|
|
|
|
{{ Str::ucfirst($user->field_of_study??"-")}}
|
|
|
|
{{ Str::ucfirst($user->is_political??"-")}}
|
|
|
|
{{ Str::ucfirst($user->is_alcoholic??"-")}}
|
|
|
|
{{ Str::ucfirst($user->is_smoking??"-")}}
|
|
|
|
{{ Str::ucfirst($user->do_exercise??"-")}}
|
|
|
|
@if(!empty($user->height))
@if($user->height_measurement == "feet")
{{cmToFeet($user->height).' '.$user->height_measurement}}
@else
{{$user->height.' '.$user->height_measurement}}
@endif
@else
-
@endif
|
|
|
|
@if(!empty($user->weight))
{{ $user->weight.' '.$user->weight_measurement}}
@else
-
@endif
|
|
|
|
@php
$hobby = Helpers::hobby($user['id']);
@endphp
@if(!empty($hobby))
{{$hobby}}
@else
-
@endif
|
|
|
|
@php
$ethnicity = Helpers::ethnicity($user['id']);
@endphp
@if(!empty($ethnicity))
{{$ethnicity}}
@else
-
@endif
|