@extends('layouts.master') @section('browserTitle') @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') {{ trans('menu.patient') }} @elseif($_SESSION['role']=='patient') @if($_SESSION['loggedID']== $patient->id) {{ trans('menu.profile') }} @else {{ trans('menu.patient') }} @endif @endif @endif @endsection @section('breadcrumb') @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician')
@if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') {{ trans('btn.edit') }} {{ trans('btn.editPw') }} {{ trans('btn.delete') }} {{ trans('btn.back') }} @elseif($_SESSION['role']=='patient' && $_SESSION['loggedID']== $patient->id) {{ trans('btn.edit') }} {{ trans('btn.editPw') }} @endif @endif
{{ trans('other.firstname') }} | {{ $patient->user->firstname }} | ||
---|---|---|---|
{{ trans('other.lastname') }} | {{ $patient->user->lastname }} | ||
{{ trans('other.email') }} | {{ $patient->user->email }} | ||
{{ trans('other.birthdate') }} | @if($patient->birthdate == null)@else | {{ $patient->birthdate }} | @endif|
{{ trans('other.sex') }} | @if(($patient->sex) == 0){{ trans('other.male') }} | @elseif(($patient->sex) == 1){{ trans('other.female') }} | @else@endif |
{{ trans('other.schooling') }} | {{ $patient->schooling }} | ||
{{ trans('other.diagnosis') }} | {{ $patient->diagnosis }} | ||
{{ trans('other.lateralization') }} | @if(($patient->lateralization) == null)@elseif(($patient->lateralization) == 0) | {{ trans('other.right') }} | @else(($patient->lateralization) == 1){{ trans('other.left') }} | @endif
{{ trans('other.chemotherapy') }} | @if(($patient->chemoterapy) == null)@elseif(($patient->chemoterapy) == 0) | {{ trans('other.no') }} | @else(($patient->chemoterapy) == 1){{ trans('other.yes') }} | @endif
{{ trans('other.radiotherapy') }} | @if(($patient->radioterapy) == null)@elseif(($patient->radioterapy) == 0) | {{ trans('other.no') }} | @else(($patient->radioterapy) == 1){{ trans('other.yes') }} | @endif
{{ trans('other.dominantHand') }} | @if(($patient->dominant_hand) == null)@elseif(($patient->dominant_hand) == 0) | {{ trans('other.right') }} | @elseif(($patient->dominant_hand) == 1){{ trans('other.left') }} | @endif
{{ trans('other.antiepileptics') }} | @if(($patient->antieplileptics) == null)@elseif(($patient->antieplileptics) == 0) | {{ trans('other.no') }} | @elseif(($patient->antieplileptics) == 1){{ trans('other.yes') }} | @endif
{{ trans('other.tranquilizers') }} | @if(($patient->tranquilizers) == null)@elseif(($patient->tranquilizers) == 0) | {{ trans('other.no') }} | @elseif(($patient->tranquilizers) == 1){{ trans('other.yes') }} | @endif
{{ trans('other.cortisone') }} | @if(($patient->cortisone) == null)@elseif(($patient->cortisone) == 0) | {{ trans('other.no') }} | @elseif(($patient->cortisone) == 1){{ trans('other.yes') }} | @endif
{{ trans('other.neurosurgery') }} | @if(($patient->neurosurgery) == null)@elseif(($patient->neurosurgery) == 0) | {{ trans('other.no') }} | @elseif(($patient->neurosurgery) == 1){{ trans('other.yes') }} | @endif
{{ trans('other.level') }} | {{ $patient->level }} | ||
{{ trans('menu.clinicians') }} |
@if(count($patient->clinicians) == 0)
No clinicians associated @else
@foreach ($patient->clinicians as $clinician)
{{ $clinician->user->firstname }} {{ $clinician->user->lastname }}
|
||
{{ trans('other.other') }} | @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') {{ trans('menu.showAssessments') }} {{ trans('menu.showExRes') }} {{ trans('btn.back') }} @elseif($_SESSION['role']=='patient' && $_SESSION['loggedID']== $patient->id) {{ trans('btn.associate') }} {{ trans('btn.back') }} @endif @endif |