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

Preview Shipping Labels Import

Review the extracted data before importing

Total Pages
{{ $result['total_pages'] }}
Orders Found
{{ $result['parsed'] }}
COD Orders
{{ $result['summary']['cod_orders'] ?? 0 }}
Total Qty
{{ $result['summary']['total_qty'] ?? 0 }}
@if(!empty($result['errors']))

Some pages had issues

    @foreach(array_slice($result['errors'], 0, 5) as $error)
  • {{ $error }}
  • @endforeach
@endif

Data Preview (First 20 records)

@foreach(array_slice($result['orders'], 0, 20) as $order) @endforeach
Order ID Tracking Receiver Postcode Product Seller SKU COD
{{ $order['order_id'] ?? '-' }} {{ $order['tracking_number'] ?? '-' }} {{ $order['receiver_name'] ?? '-' }} {{ $order['postcode'] ?? '-' }} {{ $order['product_name'] ?? '-' }} {{ $order['seller_sku'] ?? '-' }} @if($order['is_cod'] ?? false) COD @else - @endif
Cancel
@csrf
@endsection