@vite(['resources/css/app.css', 'resources/js/app.js'])
{{ __('Ready to print') }}
@if($order->type === \App\Models\Warehouse\TransferOrder::TYPE_W2W)

{{ __('Source Warehouse') }}

{{ $order->fromWarehouse?->name ?? '-' }}

@else

{{ __('Source Machine') }}

{{ $order->fromMachine?->name ?? '-' }} ({{ $order->fromMachine?->serial_no }})

@endif

{{ __('Target Warehouse') }}

{{ $order->toWarehouse?->name ?? '-' }}

{{ __('Created By') }}

{{ $order->creator?->name ?? __('System') }}

{{ __('Transfer Type') }}

{{ $order->type === \App\Models\Warehouse\TransferOrder::TYPE_W2W ? __('Warehouse to Warehouse') : __('Machine to Warehouse') }}

{{ __('Created At') }}

{{ $order->created_at->timezone('Asia/Taipei')->format('Y-m-d H:i:s') }}

{{ __('Print Time') }}

{{ now()->timezone('Asia/Taipei')->format('Y-m-d H:i:s') }}

@if($order->note)

{{ __('Note') }}

{{ $order->note }}

@endif

{{ __('Transfer Details') }} ({{ $items->count() }} {{ __('Items') }})

@foreach($items as $index => $item) @endforeach
{{ $index + 1 }}

{{ $item->product?->localized_name ?? __('Unknown') }}

ID: {{ $item->product_id }}

{{ $item->product?->barcode ?? '-' }}

x{{ $item->quantity }}

{{ __('Print Notice') }}

{{ __('Please make sure to enable "Background graphics" in your browser print settings to print product images and styled components correctly.') }}

{{ __('Prepared By') }}

{{ __('Transfer Out Confirmation') }}

{{ __('Courier/Dispatcher') }}

{{ __('Transfer In Confirmation') }}

Star Cloud © 2026. All rights reserved.