@extends('layouts.user_type.auth') @section('content') Mise à jour d'un pointage × Personnel * personnel == '' ? 'selected' : '' }}>Choisir . . . {{ $ps = DB::table("personnels")->where("statut", "1")->where("grade", "PERSONNEL")->get() }} @foreach($ps as $p) personnel == $p->id ? 'selected' : '' }}>{{ $p->nom }} {{ $p->prenom }} @endforeach Nombre d'heure Nombre de minute @if(collect(["BOSS", "RESPONSABLE EXECUTION"])->contains(auth()->user()->role)) Nombre d'heures à retirer @endif Justification LISTE DES POINTAGES PERSONNEL POINTEUR DATE POINTAGE HEURE MINUTE ACTION @foreach($pointages as $pointage) {{ DB::table("personnels")->find($pointage->personnel)->nom }} {{ DB::table("personnels")->find($pointage->chef)->nom }} {{ $pointage->date }} {{ $pointage->nombre_heure }} {{ $pointage->nombre_minute }} @endforeach {{ $pointages->links() }} @endsection