| Nama |
: |
{{ $this->patient->name ?? '-' }}
|
| NIK/SIM/Nomor Identitas |
: |
{{ $this->patient->id_number ?? '-' }} |
| Tempat Lahir |
: |
{{ $this->patient->birth_place ?? '-' }} |
| Tanggal Lahir |
: |
{{ optional($this->patient->birthday)->format('d-m-Y') ?? '-' }} / {{ $this->patient->age ?? '-' }} |
| Alamat Surel |
: |
{{ $this->patient->email ?? '-' }} |
| Nomor Ponsel |
: |
{{ $this->patient->phone_number ?? '-' }} |
| Jenis Kelamin |
: |
{{ $this->patient->gender ?? '-' }} |
| Pekerjaan |
: |
{{ $this->patient->job ?? '-' }} |
| Perusahaan |
: |
{{ optional($this->patient->company)->name ?? '-' }} |