@extends('layout/app') @section('title', 'Сварочное производство') @include('layout/header') @section('content')
@foreach ($columns_1 as $column) @endforeach @foreach ($columns_2 as $column) @endforeach
Специалисты {{ $column->name }}
{{ $column->name }}
@include('layout/vsego', ['columns' => $columns_2]) @foreach ($rows as $row) @foreach ($columns_2 as $column) @php $color = $red[$column->id][$row->id] ?? null; $style = ''; if ($color === 'red') { $style = 'background-color: red; color: white;'; } elseif ($color === 'yellow') { $style = 'background-color: yellow; color: black;'; } elseif ($color === 'green') { $style = 'background-color: green; color: white;'; } @endphp @endforeach @endforeach
{{ $row->name }} {{-- @if (isset($red[$column->id][$row->id])) @else @endif --}} @if (isset($scan[$column->id][$row->id])) @endif @if (isset($scan1[$column->id][$row->id])) @endif @if (isset($scan2[$column->id][$row->id])) @endif @if (isset($data[$column->id][$row->id])) {{ $data[$column->id][$row->id] }} @php $create = 0; @endphp @endif @if ($user == 'Admin') @endif
@if ($edit == 1) @include('svarka/modal') @endif @endsection