@extends('layout.app') @section('content')
Profile du Patient
{{--
--}} {{-- --}} {{--
--}}
Noms

{{ $data->name }}

Age

{{ $data->age() }} ans

Genre

{{ $data->sex }}

Groupe

{{ $data->group->name }}

Pathologie

{{ $data->pathology }} Kg

Profession

{{ $data->size }} cm

Poids

{{ $data->weight }} Kg

Taille

{{ $data->size }} cm

Téléphone

{{ $data->tel }}

Adresse

{{ $data->address }}

@if($data->stay)

En hospitalisation depuis le {{ $data->lastIntervention()->date }}

{{ $data->lastIntervention()->room->name }} - {{ $data->lastIntervention()->room->department->name }}

Maladie ou Gêne actuel

{{ $data->lastIntervention()->trouble->name }}

Etat actuel

{{ $data->lastIntervention()->status->name }}


{{--
--}} {{--

General Report

--}} {{--
--}} {{--
Heart Beat 85
--}} {{--
--}} {{--
40% Complete (success)
--}} {{--
--}} {{--
Blood Pressure93
--}} {{--
--}} {{--
50% Complete
--}} {{--
--}} {{--
Sugar55
--}} {{--
--}} {{--
50% Complete
--}} {{--
--}} {{--
Haemoglobin78%
--}} {{--
--}} {{--
50% Complete
--}} {{--
--}} {{--
--}}

@endif
Dernières hospitalisations
@foreach($data->interventions as $intervention) @endforeach
Date Professionnel en charge Soins Charges ({!! htmlentities(auth()->user()->company->currency_symbol, ENT_NOQUOTES, 'UTF-8') !!})
{{ $intevention->date }} {{ $intervention->user->name }} {{ $intervention->care->name }} 14$

@endsection