@extends('layouts.app') @section('content')

OSHA Respirator Medical Evaluation

@csrf @php $answers = $response->answers ?? []; @endphp

Section 1: Personal Info

Section 2: General Health

@foreach([ 'smoke' => 'Do you smoke?', 'seizures' => 'Seizures?', 'diabetes' => 'Diabetes?', 'allergies' => 'Allergies affecting breathing?', 'claustrophobia' => 'Claustrophobia?', 'smell' => 'Trouble smelling odors?' ] as $key => $label)

{{ $label }}

@endforeach

Section 3: Lung Conditions

@foreach([ 'asthma'=>'Asthma', 'bronchitis'=>'Chronic bronchitis', 'emphysema'=>'Emphysema', 'pneumonia'=>'Pneumonia', 'tuberculosis'=>'Tuberculosis', 'silicosis'=>'Silicosis', 'collapsed_lung'=>'Collapsed lung', 'lung_cancer'=>'Lung cancer' ] as $key => $label)

{{ $label }}

@endforeach

Section 4: Symptoms

@foreach([ 'short_breath'=>'Shortness of breath', 'cough'=>'Frequent coughing', 'wheezing'=>'Wheezing', 'chest_pain'=>'Chest pain', 'phlegm'=>'Phlegm' ] as $key => $label)

{{ $label }}

@endforeach

Section 5: Heart Conditions

@foreach([ 'heart_attack'=>'Heart attack', 'stroke'=>'Stroke', 'angina'=>'Angina', 'heart_failure'=>'Heart failure', 'high_bp'=>'High blood pressure' ] as $key => $label)

{{ $label }}

@endforeach

Section 6: Work Exposure

@foreach([ 'chemicals'=>'Exposure to chemicals', 'asbestos'=>'Worked with asbestos', 'dust'=>'Dust exposure', 'welding'=>'Welding exposure', 'mining'=>'Mining exposure' ] as $key => $label)

{{ $label }}

@endforeach
@endsection