@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') @elseif($_SESSION['role']=='patient') @if($_SESSION['loggedID'] == $patient->id) @else @endif @endif @endif @endsection @section('title') @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') {{ trans('menu.patient') }} {{ $patient->user->firstname }} {{ $patient->user->lastname }} @elseif($_SESSION['role']=='patient') @if($_SESSION['loggedID'] == $patient->id) {{ trans('menu.profile') }} @else {{ trans('menu.patient') }} {{ $patient->user->firstname }} {{ $patient->user->lastname }} @endif @endif @endif @endsection @section('subtitle') @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') {{ trans('btn.details') }} @elseif($_SESSION['role']=='patient' && $_SESSION['loggedID'] !== $patient->id) {{ trans('btn.details') }} @endif @endif @endsection @section('body')

@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

@if($patient->birthdate == null) @else @endif @if(isset($_SESSION['logged'])&&($_SESSION['logged']==true)) @if($_SESSION['role']=='clinician') @if(($patient->sex) == 0) @elseif(($patient->sex) == 1) @else @endif @if(($patient->lateralization) == null) @elseif(($patient->lateralization) == 0) @else(($patient->lateralization) == 1) @endif @if(($patient->chemoterapy) == null) @elseif(($patient->chemoterapy) == 0) @else(($patient->chemoterapy) == 1) @endif @if(($patient->radioterapy) == null) @elseif(($patient->radioterapy) == 0) @else(($patient->radioterapy) == 1) @endif @if(($patient->dominant_hand) == null) @elseif(($patient->dominant_hand) == 0) @elseif(($patient->dominant_hand) == 1) @endif @if(($patient->antieplileptics) == null) @elseif(($patient->antieplileptics) == 0) @elseif(($patient->antieplileptics) == 1) @endif @if(($patient->tranquilizers) == null) @elseif(($patient->tranquilizers) == 0) @elseif(($patient->tranquilizers) == 1) @endif @if(($patient->cortisone) == null) @elseif(($patient->cortisone) == 0) @elseif(($patient->cortisone) == 1) @endif @if(($patient->neurosurgery) == null) @elseif(($patient->neurosurgery) == 0) @elseif(($patient->neurosurgery) == 1) @endif @endif @endif
{{ trans('other.firstname') }} {{ $patient->user->firstname }}
{{ trans('other.lastname') }} {{ $patient->user->lastname }}
{{ trans('other.email') }} {{ $patient->user->email }}
{{ trans('other.birthdate') }}{{ $patient->birthdate }}
{{ trans('other.sex') }}{{ trans('other.male') }}{{ trans('other.female') }}
{{ trans('other.schooling') }} {{ $patient->schooling }}
{{ trans('other.diagnosis') }} {{ $patient->diagnosis }}
{{ trans('other.lateralization') }}{{ trans('other.right') }}{{ trans('other.left') }}
{{ trans('other.chemotherapy') }}{{ trans('other.no') }}{{ trans('other.yes') }}
{{ trans('other.radiotherapy') }}{{ trans('other.no') }}{{ trans('other.yes') }}
{{ trans('other.dominantHand') }}{{ trans('other.right') }}{{ trans('other.left') }}
{{ trans('other.antiepileptics') }}{{ trans('other.no') }}{{ trans('other.yes') }}
{{ trans('other.tranquilizers') }}{{ trans('other.no') }}{{ trans('other.yes') }}
{{ trans('other.cortisone') }}{{ trans('other.no') }}{{ trans('other.yes') }}
{{ trans('other.neurosurgery') }}{{ trans('other.no') }}{{ trans('other.yes') }}
{{ 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 }}
  • {{ $clinician->title }}
  • {{ $clinician->workplace }}
  • @if(isset($_SESSION['logged']) && ($_SESSION['logged'] == true)) @if($_SESSION['role'] == 'patient')
  • {{ trans('btn.dissociate') }}
  • @endif @endif
@endforeach
@endif
{{ 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
@endsection