{{ __('person.person') }} | |||
{{ __('person.names') }} | |||
{{ __('person.firstname') }} : | {{ $person->firstname }} | ||
{{ __('person.surname') }} : | {{ $person->surname }} | ||
{{ __('person.birthname') }} : | {{ $person->birthname }} | ||
{{ __('person.nickname') }} : | {{ $person->nickname }} | ||
{{ __('person.sex') }} & {{ __('person.gender') }} | |||
{{ __('person.sex') }} : |
{{ $person->sex === 'm' ? __('app.male') : __('app.female') }}
|
||
{{ __('person.gender') }} : | {{ $person->gender ? $person->gender->name : '' }} | ||
{{ __('person.birth') }} | |||
{{ __('person.dob') }} : | {{ $person->birth_formatted }} | ||
{{ __('person.pob') }} : | {{ $person->pob }} | ||
{{ __('person.age') }} : | {{ $person->age }} | ||
{{ __('person.death') }} | |||
{{ __('person.dod') }} : | {{ $person->death_formatted }} | ||
{{ __('person.pod') }} : | {{ $person->pod }} | ||
{{ __('person.cemetery') }} : |
@php
$cemetery = array_filter([$person->getMetadataValue('cemetery_location_name'), $person->getMetadataValue('cemetery_location_address')]);
@endphp
@foreach ($cemetery as $line)
{{ $line }}
@if (!$loop->last)
@endif @endforeach |
||
{{ __('person.contact') }} | |||
{{ __('person.address') }} : | {{ $person->address }} | ||
{{ __('person.phone') }} : | {{ $person->phone }} | ||
{{ __('person.summary') }} | |||
{{ $person->summary }} | |||
{{ __('person.family') }} | |||
{{ __('person.father') }} : |
@if ($person->father)
{{ $person->father->name }}
|
||
{{ __('person.mother') }} : |
@if ($person->mother)
{{ $person->mother->name }}
|
||
{{ __('person.parents') }} : |
@if ($person->parents)
{{ $person->parents->person_1->name }} {{ $person->parents->person_2->name }} |
||
{{ __('person.partner') }} : |
@if ($person->currentPartner())
{{ $person->currentPartner()->name }}
|
||
{{ __('person.partners') }}
@if (count($person->couples) > 0)
|
|||
@if ($couple->person2_id === $person->id)
{{ $couple->person_1->name }}
|
|||
{{ __('person.children') }}
@if (count($person->childrenNaturalAll()) > 0)
|
|||
{{ $child->name }}
|
|||
{{ __('person.siblings') }}
@if (count($person->siblings()) > 0)
|
|||
{{ $sibling->name }}
|
|||
{{ __('person.files') }}
@if (count($files) > 0)
|
|||
|
|||
{{ __('person.photos') }}
@if (count($images) > 0)
|