@extends('layouts.master') @section('title', $patient->first_name . ' ' . $patient->second_name . ' | Proxima - Medical Management app') @section('title-topbar', __('patientappo.patient profile')) @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Done

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

@else @role('Super-admin|Doctor|Branch-manager|Receptionist')

It's {{ $patient->first_name }}'s Profile

Add new Info related to the appointment by choosing from below

@endrole @endif @if (Session::has('error_delete'))

Can not be deleted

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

@endif @endsection @section('content')
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
{{ __('basic.dashboard') }} | {{ __('basic.patient') }} | {{ $patient->first_name }}
@role('Super-admin|Doctor|Branch-manager|Receptionist|Operation') SMS @role('Super-admin|Branch-manager|Operation') {{ __('basic.slight edit') }} @endrole {{ __('basic.edit') }} {{ __('basic.barcode') }} {{ __('patientappo.presc') }} {{ __('basic.print') }} @endrole @role('Super-admin') Delete @endrole
@if ($patient->recommendation == 1) @php $recom_color = 'main-color-bg-200'; $recom_msg = __('basic.normal'); @endphp @elseif ($patient->recommendation == 2) @php $recom_color = 'text-green-ligh-bg'; $recom_msg = __('basic.recommended'); @endphp @elseif ($patient->recommendation == 3) @php $recom_color = 'text-red-bg'; $recom_msg = __('basic.not recommended'); @endphp @endif
{{ $patient->first_name . ' ' . $patient->second_name }}

{{ __('basic.file number') }}: {{ $patient->new_id }}

{{ __('basic.code') }}: {{ $patient->code }}

{{ __('patientappo.weight') }}

{{ $patient->height }}cm

{{ __('patientappo.height') }}

{{ $patient->weight }}kg

P {{ __('basic.balance') }}

{{ $patient->balance }}pts

{{ __('patientappo.wallet') }}

{{ $patient->wallet }}egp
Heart Rate

@empty($patient->heart_rate)

Not Yet
@else {{ $patient->heart_rate }} bpm @endempty
BL Pressure

@empty($patient->bl_pressure)

Not Yet
@else {{ $patient->bl_pressure }} @endempty
@role('Super-admin|Doctor|Branch-manager|Receptionist|Operation|Operation_doctor')
@include('patient.component.exm_med') @include('patient.component.treat_sess') @include('patient.component.lab')
@endrole
@include('patient.component.appointment') @include('patient.component.payment')
@endsection @section('js') @include('patient.component.patientjs') @endsection