@extends('master') @section('content')

Initial / Yearly Exam

Date: {{{ date("jS, F Y - H:i:s", strtotime($vitals[0]->created_at)) }}}
{{{ $patientData->fname . " " . $patientData->lname }}}
Employer: {{{ $employer->name }}}

Physical Exam Findings
Vital Signs
@foreach ($vitals as $value)
@if($value->value != 'true' && $value->description != 'Prior work related injury or impairment') @elseif($value->description == 'Prior work related injury or impairment') @endif
@endforeach

Past Medical History
@foreach ($pastMedical as $key => $value)

@endforeach

Drug Allergy History
@foreach ($drugAllergy as $key => $value)

@if($value->value != 'true') @endif
@endforeach

Head and Neck
@foreach ($headNeck as $value)
@if($value->value != 'true') @else

@endif
@endforeach

Exercise Capacity
@foreach ($exercise as $value)
@if($value->value != 'true') @else

@endif
@endforeach

Chest
@foreach ($chest as $value)
@if($value->value != 'true') @else

@endif
@endforeach

Abdomen
@foreach ($abdomen as $value)
@if($value->value != 'true') @else

@endif
@endforeach

Baseline ChE Testing
@foreach ($baseline as $value)
@if($value->value != 'true') @else

@endif
@endforeach

Follow-up Testing
@foreach ($followUp as $value)
@if($value->value != 'true') @else

@endif
@endforeach

@if($legacy) @else @endif
@stop