@extends('layouts.layout-admin') @section('title', 'Warehouse') @section('header_title', 'Warehouse') @section('header_subtitle', 'Manage order shipping') @section('content')
@forelse($orders as $order) @empty @endforelse
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 }}
@csrf

No orders to ship

{{ $orders->links() }}
@endsection @push('scripts') @endpush