18 | Doctor name 19 | | 20 |21 | Patient name 22 | | 23 |24 | Appointment time 25 | | 26 |
---|---|---|
33 | {{ $appointment->doctor->name }} 34 | | 35 |36 | {{ $appointment->patient->name }} 37 | | 38 |39 | {{ $appointment->start_time }} 40 | | 41 |
18 | Name 19 | | 20 |21 | Licence no 22 | | 23 |24 | Licence date 25 | | 26 |27 | Stamp no 28 | | 29 |30 | Hospital name 31 | | 32 |33 | Department 34 | | 35 |36 | Specialty 37 | | 38 |39 | Work hours 40 | | 41 |42 | Biography 43 | | 44 |
---|---|---|---|---|---|---|---|---|
51 | {{ $doctor->name }} 52 | | 53 |54 | {{ $doctor->doctor_licence_no }} 55 | | 56 |57 | {{ $doctor->doctor_licence_start_date }} - {{ $doctor->doctor_licence_end_date ?? 'valid' }} 58 | | 59 |60 | {{ $doctor->doctor_stamp_number }} 61 | | 62 |63 | {{ $doctor->doctor_hospital_name }} 64 | | 65 |66 | {{ $doctor->doctor_department }} 67 | | 68 |69 | {{ $doctor->doctor_specialty }} 70 | | 71 |72 | {{ $doctor->doctor_work_days }} {{ $doctor->doctor_work_hours }} 73 | | 74 |75 | {{ Str::words($doctor->doctor_biography, 3) }} 76 | | 77 |
18 | Name 19 | | 20 |21 | Birth date 22 | | 23 |24 | Declared address 25 | | 26 |27 | Home address 28 | | 29 |30 | Phone no 31 | | 32 |33 | Gender 34 | | 35 |36 | Personal code 37 | | 38 |39 | Social number 40 | | 41 |42 | Last visit time 43 | | 44 |45 | Last visit reason 46 | | 47 |48 | Description 49 | | 50 |
---|---|---|---|---|---|---|---|---|---|---|
57 | {{ $patient->name }} 58 | | 59 |60 | {{ $patient->patent_birth_date }} 61 | | 62 |63 | {{ $patient->patient_declared_address }} 64 | | 65 |66 | {{ $patient->patient_home_address }} 67 | | 68 |69 | {{ $patient->patient_phone_no }} 70 | | 71 |72 | {{ $patient->patient_gender }} 73 | | 74 |75 | {{ $patient->patient_personal_code }} 76 | | 77 |78 | {{ $patient->patient_social_number }} 79 | | 80 |81 | {{ $patient->patient_last_visit_time }} 82 | | 83 |84 | {{ $patient->patient_last_visit_reason }} 85 | | 86 |87 | {{ Str::words($patient->patient_description, 3) }} 88 | | 89 |
18 | Name 19 | | 20 |21 | Email 22 | | 23 |
---|---|
30 | {{ $user->name }} 31 | | 32 |33 | {{ $user->email }} 34 | | 35 |