Marital Information
-
Marital Status
{{$staff->marital()->marital_status ?? 'NILL'}}
-
Anniversary Date
@if ($staff->marital() && $staff->marital()->anniversary)
{{ \Carbon\Carbon::parse($staff->marital->anniversary)->setTimezone('Africa/Lagos')->format('jS F Y') }}
@else
NILL
@endif
{{-- {{ \Carbon\Carbon::parse($staff->marital()->anniversary )->format('j F Y') }}--}}
-
Spouse Name
{{$staff->marital()->spouse_name ?? 'NILL'}}
-
Spouse Email
{{$staff->marital()->spouse_email ?? 'NILL'}}
-
Spouse Phone
{{$staff->marital()->spouse_phone ?? 'NILL'}}
-
Spouse Occupation
{{$staff->marital()->spouse_occupation ?? 'NILL'}}
-
Spouse Office
{{$staff->marital()->spouse_office ?? 'NILL'}}
-
Number of Children
{{$staff->marital()->children_number ?? 'NILL'}}
@if($staff->childrenProfiles->count() > 0)
Children Information
@foreach ($staff->childrenProfiles as $child)
-
@endforeach
@endif