@extends('layouts.layout-admin') @section('title', 'Warehouse') @section('header_title', 'Warehouse') @section('header_subtitle', 'Manage order shipping') @section('content')
| Order Code | Customer | Items | Shipping | Status | Action |
|---|---|---|---|---|---|
| {{ $order->order_code }} | {{ $order->user->name }} |
@foreach ($order->items as $item)
{{ $item->product->name }} x {{ $item->quantity }}
@endforeach
|
{{ $order->shippingCost->destination ?? '-' }} | {{ $order->status }} | |
|
No orders to ship |
|||||