@lang('global.infodetail') @lang('global.Usager')
@lang('global.Registerid'): {{ $usager->registreid ?? $usager->id }}
{{-- @isset($lastVaccinated)
@lang('global.Last vaccinated'): {{ $lastVaccinated->created_at->format('d/m/Y') }}
@endisset @isset($lastTested)
@lang('global.Last tested'): {{ $lastTested->created_at->format('d/m/Y') }}
@endisset --}} @lang('global.Identity')
@lang('global.Civilite'): {{ $usager->civiliteIntitule ? $usager->civiliteIntitule->libelle : 'N/a' }}
@lang('global.Nom'): {{ $usager->nom }}
@lang('global.Prenom'): {{ $usager->prenom }}
@lang('global.pid'): {{ $usager->pid }}
@lang('global.dob'): {{ $usager->dob->format('d-m-Y') }}
@lang('global.Tranche'): {{ $usager->trancheIntitule ? $usager->trancheIntitule->libelle : 'N/a' }}
@lang('global.Profession'): {{ $usager->professionIntitule ? $usager->professionIntitule->libelle : 'N/a' }}
@lang('global.Full Address')
@lang('global.Adresse'): {{ $usager->typevoieIntitule ? $usager->typevoieIntitule->libelle : ''}} {{ $usager->adresse }}
@lang('global.Addressnext'): {{ $usager->adrsuite }}
@lang('global.CsBp'): {{ $usager->csbp }}
@if( $usager->cp )
@lang('global.Cp'): {{ $usager->cp }}
@endif
@lang('global.City'):{{ $usager->city->name }}
@lang('global.Country'):{{ $usager->country->name }}
@lang('global.Contacts')
@lang('global.Mobile'): {{ add_country_tel_prefix($usager->mobile) }}
@lang('global.Email'): {{ $usager->email }}
@canany(['patients.read-created-by', 'patients.read-updated-by'])
@can('patients.read-created-by')
@lang('global.Created by') {{ $usager->createdBy?->full_name }}
({{ $usager->created_at->format('d/m/Y') }})
@endcan @can('patients.read-updated-by')
@lang('global.Updated by') {{ $usager->updatedBy?->full_name }}
({{ $usager->updated_at->format('d/m/Y') }})
@endcan
@endcanany