| Patient Name | {{ $data->patient_name }} |
| Date | {{ $data->date }} |
| Family Doctor's Name | {{ $data->doctor_name }} |
| Doctor's Phone No | {{ $data->doctor_phone }} |
| 1. Do you have any heart problems? | {{ $data->has_heart_problems == 1 ? 'Yes' : 'No' }} |
| 2. Do you have any thyroid problems? | {{ $data->has_thyroid_problems == 1 ? 'Yes' : 'No' }} |
| 3. Do you have HIGH or LOW blood pressure? | {{ $data->has_blood_pressure == 1 ? 'Yes' : 'No' }} |
| 4. Are you currently taking any medications? | {{ $data->taking_medications == 1 ? 'Yes' : 'No' }} |
| Medication List | {{ $data->medication_list }} |
| 5. Have you been diagnosed with arthritis? | {{ $data->has_arthritis == 1 ? 'Yes' : 'No' }} |
| 6. Do you have diabetes? | {{ $data->has_diabetes == 1 ? 'Yes' : 'No' }} |
| 7. Do you have or ever had cancer? | {{ $data->cancer == 1 ? 'Yes' : 'No' }} |
| 8. Have you ever broken a bone? | {{ $data->has_broken_bone == 1 ? 'Yes' : 'No' }} |
| 9. Do you have any metal fixations, plates, screws, etc.? | {{ $data->has_metal_fixations == 1 ? 'Yes' : 'No' }} |
| 10. Do you smoke? | {{ $data->do_you_smoke == 1 ? 'Yes' : 'No' }} |
| How much? | {{ $data->smoke_much }} |
| 11. Do you have any abdominal problems, ie hernia, ulcer? | {{ $data->has_abdominal_problems == 1 ? 'Yes' : 'No' }} |
| 12. Have you had any previous surgeries? | {{ $data->has_previous_surgeries == 1 ? 'Yes' : 'No' }} |
| Previous Surgeries List | {{ $data->previous_surgeries_list }} |
| 13. If female, are you pregnant? | {{ $data->is_pregnant == 1 ? 'Yes' : 'No' }} |
| 14. Previous car accident? | {{ $data->has_car_accident == 1 ? 'Yes' : 'No' }} |
| Accident Date | {{ $data->car_accident_date }} |
| 15. Any allergies or skin irritations? | {{ $data->has_allergies == 1 ? 'Yes' : 'No' }} |
| 16. Asthma or respiratory problems? | {{ $data->asthma == 1 ? 'Yes' : 'No' }} |
| 17. Any other health problems? | {{ $data->has_other_health_problems == 1 ? 'Yes' : 'No' }} |
| 18. Any reason to avoid physical activity? | {{ $data->has_other_reason == 1 ? 'Yes' : 'No' }} |
| Last Physiotherapy Visit | {{ $data->last_physiotherapy_visit }} |
| Last Physiotherapy Location | {{ $data->last_physiotherapy_location }} |
| Emergency Contact Person | {{ $data->emergency_contact_person }} |
| Emergency Phone | {{ $data->emergency_phone }} |
| Client Signature | {{ $data->client_signature }} |