@extends('admin.layout') @section('title', 'Planning interventions') @section('content')

Planification des interventions

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
{{-- ===== INTERVENTION BLOCK ===== --}}

{{-- INTERVENTION --}}
{{-- DATES --}} @php $dureesOptions = []; for ($m = 30; $m <= 480; $m += 30) { $h = intdiv($m, 60); $r = $m % 60; $dureesOptions[$m] = $h > 0 ? $h . ' h' . ($r ? ' ' . $r : '') : $m . ' min'; } @endphp
{{-- EMPLOYÉS --}}
{{-- ================= ÉQUIPE ================= --}}
Veuillez sélectionner une plage de dates pour afficher les employés
@foreach ($users->chunk(ceil($users->count() / 2)) as $col)
@foreach ($col as $user)
@endforeach
@endforeach
{{-- BOUTON SUPPRIMER --}}
{{-- ===== END BLOCK ===== --}}
{{-- ACTIONS --}}
@endsection