{{ __('Barcode Create') }}

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Create One by One

@csrf
@error('product_id')

{{ $message }}

@enderror
@error('supplier_label')

{{ $message }}

@enderror
@error('qty')

{{ $message }}

@enderror

Create Bulk

@csrf

Bulk import from supplier bills will be wired once purchasing is available in the new system.

Current List

@csrf @method('DELETE')
@if($queue->isEmpty())

No items added yet.

@else
@foreach($queue as $item)
{{ $item->product->barcode ?? 'No barcode' }} > {{ $item->supplier_label ?? 'No supplier' }}
Qty: {{ $item->qty }}
@csrf @method('DELETE')
@endforeach
@endif