@extends('layouts.master') @section('title', 'Tabs') @section('parentPageTitle', 'UI') @section('page-style') @include('grh_views.coupures.style_css') @stop @section('content')
Tous les employés

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
Informations du personnel
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 par lesquels l'employé est passé:
@php $index=1; @endphp @foreach($getinfoPost as $i) @endforeach
# Poste occupé 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
Informations sur les congés:





@php $index=1; @endphp @foreach($all_leaves as $l) @endforeach
No Date Nom Employé Type Congé Jours demandés DateDebut DateFin Action
{{$index++}} {{$l->date_fait }} {{$l->name}} {{$l->type_conge}} {{$l->jours_demand }} @if ($l->jours_demand == 1) jour @else jours @endif {{ \Carbon\Carbon::parse($l->dateDebut_cong)->format('d/m/Y') }} {{ \Carbon\Carbon::parse($l->date_fin_conge)->format('d/m/Y') }} Afficher
@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