@extends('admin.layouts.resource-layout') @section('title')

Заказы: просмотр {{ $order->id }}

@endsection @section('resource-content')
ID{{ $order->id }}
Order ID{{ $order->orderId }}
Order PID{{ $order->orderPid }}
Дата{{ $order->created_at }}
Статус{{ $order->statusLabel }}
Лейбл @foreach(explode(',', $order->label) as $label) @if($label) {{$label}}, @endif @endforeach
Вес{{ $order->weight }}
Кол-во коробок{{ $order->parcelCount }}
Автор{{ $order->author ? $order->author->name : '' }}

Добавить позицию @if($order->positions->isNotEmpty()) @foreach($order->positions as $key => $position) @endforeach
ID Наименование товара CID Товара PID Товара Консигнация Кол-во Мерчант ID Мерчант Имя Склад ID Действия
{{ $position->id }} {{ $position->name }} {{ $position->cid }} {{ $position->pid }} {{ $position->isConsignment ? 'Да' : 'Нет'}} {{ $position->quantity }} {{ $position->merchantId }} {{ $position->merchant['name'] }} {{ $position->warehouseId }}
@csrf @method('DELETE')
@endif
@endsection