@extends('Templates/AdminLayout/AdminLayout') @section('Main-content') @if (session('success')) @endif @if (session('danger')) @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
{{-- ./row --}}
{{-- @if (count($allMissingTasks['elemental']) > 0)

Tarefas elementares não atribuidas

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

Tarefas elementares não atribuídas - (Seleciona para remover da obra, se necessário)

    @foreach ($allMissingTasks['elemental'] as $taskId => $taskDetails)
  • {{ $taskDetails['code'] }} - {{ $taskDetails['description'] }}
  • @endforeach
@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

{{ $receiveDataCompanyProject->company_project_description }}

{{-- ./content-header --}}

3 - Criar Postos de Trabalho

{{--

Criar Postos de Trabalho

@csrf
--}}
@csrf

Postos de Trabalho

{{--
Postos de Trabalho Nome do Posto de Trabalho Tarefas Elementares
--}}
{{-- --}} @foreach ($listWorkstations as $listWorkstation) {{-- --}} @endforeach
Posto de TrabalhoNome Posto de Trabalho Detalhes
{{ $listWorkstation->name_workstations }} {{ $listWorkstation->nomenclature_workstation ?? '' }}
@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