@extends('layouts.master') @section('title', 'Employes') @section('parentPageTitle', 'Tables') @section('page-style') @stop @section('content')
Tous les Employés
@if(Auth()->user()->roles()->whereIn('role_id', [1,45,46,47])->exists()) @if(Auth()->user()->roles()->whereIn('role_id', [1])->exists()) Savegarder tous employés @endif Tous les contrats Tous les dossiers @endif
@if(Session::has('message'))

{{Session::get('message')}}

@endif @if(Session::has('message_error'))

{{Session::get('message_error')}}

@endif @if (session()->has('success'))
{{ session()->get('success') }}
@elseif (session()->has('error'))
{{ session()->get('error') }}
@endif @if ($errors->any())
@endif @include('grh_views.coupures.add_user')
@foreach($users as $key => $i) @endforeach
No Matricule Nom complet Email Contact Dir Service Poste Statut Action
{{++$key}} {{$i->matricule}} {{$i->name}} {{$i->email}} {{$i->telephone}} {{$i->pseudo_dir}} {{$i->service_id == 0 ? '-' : $i->nom_service}} {{$i->poste_id == 0 ? '-' : $i->nom_poste}} {{$i->nom_statut}} Editer Details
@stop @section('page-script') @stop