@extends('layouts.master') @section('title', 'Utilisateurs') @section('parentPageTitle', 'UI') @section('page-style') @stop @section('content') Tous les employés Tous les contrats


Informations détaillées de: {{$info_user->name}} - Matricule : {{$info_user->matricule ?? '-'}}

Selectionner un employé

@if (session()->has('success'))
{{ session()->get('success') }}
@elseif (session()->has('error'))
{{ session()->get('error') }}
@endif @if ($errors->any())
    @foreach($errors->all() as $message)
  • {{ $message }}
  • @endforeach
@endif @include('grh_views.coupures.add_user')
Informations de base d'un employé
Modifier
Matricule: {{$info_user->matricule ?? '-'}}
Nom complet: {{$info_user->name ?? '-'}}
Email: {{$info_user->email ?? '-'}}
Contact: {{$info_user->telephone ?? '-'}}
Direction: {{$info_user->nom_direction ?? '-'}}
Service: {{$info_user->service_id == 0 ? '-' : $info_user->nom_service}}
Poste/Fonction: {{$info_user->poste_id == 0 ? '-' : $info_user->nom_poste}}
Statut: {{$info_user->nom_statut ?? '-'}}
no image
Photo de {{$info_user->name}}
@include('grh_views.coupures.info_employe')
@if(!in_array($info_user->id, $usersWithStatusIds))
@endif @if( $addnewButtonStatut == 0)
@endif
L'Employé: {{$info_user->name}}
Statut du Personnel:
@php $index=1; @endphp @foreach($getStatuts as $i) @endforeach
# Statut actuel Date début Date Fin Motif Action
{{$index++}} {{$i->nom_statut}} {{$i->date_debut_statut}} {{$i->date_fin_statut}} {{$i->motif_statut}} @if($i->etat_statut == 1)
@csrf
@endif
@if( $addnewButton == 0)
@endif
L'Employé: {{$info_user->name}}
Les Postes/Fonctions par lesquels l'employé est passé:
@php $index=1; @endphp @foreach($getinfoPost as $i) @endforeach
# Poste/Fonction occupé(e) Date début Date Fin Motif Action
{{$index++}} {{$i->nom_poste}} {{$i->date_debut}} {{$i->date_fin}} {{$i->motif}} @if($i->etat_poste == 1)
@csrf
@endif
@if( $addnewButtonServ == 0)
@endif
L'Employé: {{$info_user->name}}
Les services par lesquels l'employé est passé:
@php $index=1; @endphp @foreach($getinfoServ as $i) @endforeach
# Service occupé Date début Date Fin Motif Action
{{$index++}} {{$i->nom_service}} {{$i->date_debut_serv}} {{$i->date_fin_serv}} {{$i->motif_service}} @if($i->etat_service == 1)
@csrf
@endif
@stop @section('page-script') @stop