@extends('layouts.admin') @section('page-title') Détails du personnel ménage @endsection @section('page-subtitle') {{ $worker->prenom }} @endsection @section('styles') @endsection @section('content')
Informations personnelles
{{ $worker->prenom }}
{{ $worker->nom }}
{{ $worker->email }}
@switch($worker->language) @case('fr') 🇫🇷 Français @break @case('ru') 🇷🇺 Russe @break @case('ro') 🇷🇴 Roumain @break @default {{ $worker->language }} @endswitch
@if($worker->is_active) Actif @else Inactif @endif
Personnel ménage
Informations système
#{{ $worker->id }}
{{ $worker->created_at ? $worker->created_at->format('d/m/Y à H:i') : 'Non définie' }}
{{ $worker->updated_at ? $worker->updated_at->format('d/m/Y à H:i') : 'Non définie' }}
@if($worker->is_manager) Oui @else Non @endif
Actions
@if($worker->is_active) @else @endif
@endsection @section('scripts') @endsection