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

{{ $data->name }}

Age

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

Genre

{{ $data->sex }}

Groupe

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

Pathologie

{{ $data->pathology }}

Profession

{{ $data->job }}

Poids

{{ $data->weight }} Kg

Taille

{{ $data->size }} cm

Téléphone

{{ $data->tel }}

Adresse

{!! $data->address !!}

Antécédent

{{ $data->antecedent }}

Assuré

{{ $data->assured ? 'Oui' : 'Non' }} @if($data->assured)
Sécurité Sociale {{$data->assured_social_percent}}%
Assurance {{$data->assured_completed_percent}}%
@endif


@if($data->isStay())
En hospitalisation depuis le
{{ $data->lastIntervention()->datetimefrom->translatedFormat('D d F Y') }}
Chambre
{{ $data->lastIntervention() ? $data->lastIntervention()->room->name : '' }} {{ $data->lastIntervention() ? ($data->lastIntervention()->room->department?' - '.$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
{{--
--}} {{--

General Report

--}} {{--
--}} {{--
Heart Beat 85
--}} {{--
--}} {{--
40% Complete (success)
--}} {{--
--}} {{--
Blood Pressure93
--}} {{--
--}} {{--
50% Complete
--}} {{--
--}} {{--
Sugar55
--}} {{--
--}} {{--
50% Complete
--}} {{--
--}} {{--
Haemoglobin78%
--}} {{--
--}} {{--
50% Complete
--}} {{--
--}} {{--
--}}
@if($data->teleconsultations)
Dernières Téléconsultations
{{-- --}} @foreach($data->teleconsultations as $teleconsultation) {{-- --}} @endforeach
Date Durée Professionnel en charge Diagnostic Ordonnance Charges ({!! htmlentities(auth()->user()->company->currency_symbol, ENT_NOQUOTES, 'UTF-8') !!})
{{ $teleconsultation->created_at->translatedFormat('D d M Y') }} {{ gmdate('H:i:s', $teleconsultation->duration) }} {{ $teleconsultation->user->name }} Voir14$Voir
@else
Dernières Consultations
{{-- --}} @foreach($data->consultations as $consultation) {{-- --}} @endforeach
Date Professionnel en charge Diagnostic Ordonnance Charges ({!! htmlentities(auth()->user()->company->currency_symbol, ENT_NOQUOTES, 'UTF-8') !!})
{{ $consultation->created_at->translatedFormat('D d M Y') }} {{ $consultation->user->name }} Voir14$Voir
@endif

Dernières Hospitalisations
{{-- --}} @foreach($data->interventions as $intervention) {{-- --}} @endforeach
Date Professionnel en charge Diagnostic Soins ProduitsCharges ({!! htmlentities(auth()->user()->company->currency_symbol, ENT_NOQUOTES, 'UTF-8') !!})
{{ $intervention->datetimefrom->translatedFormat('D d M Y') }} @if($intervention->datetimeto) à {{ $intervention->datetimeto->translatedFormat('D d F Y') }} @endif {{ $intervention->user->name }} Voir @foreach($intervention->cares as $care)
  • {{ $care->name }}
  • @endforeach
    @if($intervention->sale) @foreach($intervention->sale->commands as $command)
  • {{ $command->product->name }} (x{{ $command->qte }})
  • @endforeach @endif
    14$

    @endsection @push('scripts') @endpush