@extends('Templates/templateAdmin') @section('Main-content') @if (session('success')) @endif @if (session('errors')) @php $allMissingTasks = session('errors'); @endphp

Elementos não associados:

@if (count($allMissingTasks['workstation']) > 0)

Postos de Trabalho sem tarefas

    @foreach ($allMissingTasks['workstation'] as $workstationId => $workstationDetails)
  • {{ $workstationDetails['name_workstations'] }} - {{ $workstationDetails['nomenclature_workstation'] }}
  • @endforeach
{{-- ./card card-danger --}} @endif
@if (count($allMissingTasks['elemental']) > 0)

Tarefas elementares não atribuidas

    @foreach ($allMissingTasks['elemental'] as $taskId => $taskDetails)
  • {{ $taskDetails['code'] }} - {{ $taskDetails['description'] }}
  • @endforeach
{{-- ./card card-danger --}} @endif
@if (count($allMissingTasks['further']) > 0)

Tarefas complementares não atribuidas

    @foreach ($allMissingTasks['further'] as $taskId => $taskDetails)
  • {{ $taskDetails['name'] }} - {{ $taskDetails['description'] }}
  • @endforeach
{{-- ./card card-danger --}} @endif
{{-- ./row --}}
{{-- --}} @endif
{{-- ./content-header --}}

Postos de Trabalho

Criar Postos de Trabalho

@csrf

Postos da Obra

@foreach ($listWorkstations as $listWorkstation) @endforeach
Posto de Trabalho Nome Posto de Trabalho Detalhes
{{ $listWorkstation->name_workstations }} {{ $listWorkstation->nomenclature_workstation ?? '' }}
{{-- ./card-body --}}
@csrf
{{-- ./container-fluid --}}
{{-- ./content --}} @foreach ($listWorkstations as $listWorkstation) @livewire('articulado.select-elemental-tasks-in-wonkstation', ['workstation' => $listWorkstation], key($listWorkstation->id_workstations)) {{-- modal-remover --}} {{-- ./modal-remover --}} @endforeach @endsection @section('scriptsTemplateAdmin') @endsection