@extends('layouts.app') @section('content')

Заказ МАФ

@csrf @include('partials.input', ['name' => 'product_name', 'title' => 'МАФ', 'disabled' => true, 'value' => $maf_order->product->common_name]) @include('partials.input', ['name' => 'order_number', 'title' => 'Номер заказа', 'required' => false, 'value' => $maf_order->order_number, 'disabled' => $maf_order->products_sku->count()]) @include('partials.select', ['name' => 'status', 'title' => 'Статус', 'options' => ['заказан', 'на складе'], 'key_as_val' => true, 'value' => $maf_order->status, 'disabled' => $maf_order->products_sku->count()]) @include('partials.input', ['name' => 'quantity', 'title' => 'Количество', 'type' => 'number', 'required' => true, 'value' => $maf_order->quantity, 'required' => true, 'disabled' => $maf_order->products_sku->count()]) @include('partials.input', ['name' => 'in_stock', 'title' => 'Остаток', 'type' => 'number', 'required' => true, 'value' => $maf_order->in_stock, 'required' => true, 'disabled' => $maf_order->products_sku->count() ]) @if($maf_order->products_sku->count()) @else @include('partials.submit', ['name' => 'Сохранить', 'deleteDisabled' => $maf_order->products_sku->count(), 'delete' => ['form_id' => 'destroy', 'title' => 'Удалить']]) @if($maf_order->status == 'заказан') @endif @endif

Площадки, куда отгружен МАФ

@foreach($maf_order->products_sku as $product_sku)
{{ $product_sku->order->common_name }}
@endforeach
@csrf
@csrf @method('DELETE')
@endsection