Shipper Advise Orders

Search
Showing: {{ $orders ? $orders->count() : 0 }}
@forelse($orders as $key => $order) @empty @endforelse
# Items #ID's Date Amount (PKR) Profit (PKR) Printed Status Shopify ID Tracking ID Tracking Info Action
{{ $key + 1 }}

{{ \App\Helpers\Helper::to_local_date($order->created_at, 'Y-m-d') }}

{{ \App\Helpers\Helper::to_local_date($order->created_at, 'H:i:s') }}

{{ $order->base_amount }} {{ $order->seller_profit_amount }} {{ \App\Models\Order::STATUS[\App\Models\Order::STATUS_SHIPPER_ADVISE] }} - {{ $order->shipping_ref }}
Name Mobile Address
{{ $order->customer_name }} {{ $order->customer_phone }} {{ $order->customer_address }}
@foreach($order->items as $item) @php $productVariant = $item->productVariant; $product = $productVariant->product; @endphp
  • {{ $product->title }}
    {{ $product->title }}
    • {{ @$product->brand->title }} | {{ $productVariant->getAttributeSummary() }} | Qty: {{ $item->quantity }}

    • {{ $item->unit_amount }} PKR
@endforeach
No orders found.
@push('scripts') @endpush