@extends('master') @section('content')
@if(Session::has('errorNotification'))

{{ Session::get('errorNotification') }}

×
@endif

Results Review

This screen summarizes patient cholinesterase testing information and contains notification commands.

Patient: {{{ $patientData->fname . " " . $patientData->lname }}}
Employer: Information needs to be updated

Baseline Testing Results
@foreach($baseLine as $base) @endforeach
Date RBC (AChE) Cholinesterase Serum (BuChE) Cholinesterase
{{{ date("jS, F Y - H:i:s", strtotime($base->test_date)) }}} {{{ $base->plasma }}} {{{ $base->rbc }}}
Average

Notifications - Restrictions and Follow-up


Follow-up Testing
@foreach($followUp as $follow) @endforeach
Date RBC (AChE) Cholinesterase Serum (BuChE) Cholinesterase % Change RBC % Change Serum
{{{ date("jS, F Y - H:i:s", strtotime($follow->test_date)) }}} {{{ $follow->plasma }}} {{{ $follow->rbc }}} {{{ round(100 - (($follow->plasma / $baseplasma ) * 100))}}}% {{{ round(100 - (($follow->rbc/ $baserbc) * 100))}}}%
@stop