@extends('master.app') @section('title', 'Stock Barcode Print') @section('body')
Barcode Labels
CODE128 • Token + Serial • A4 Print
{{-- LABEL GRID --}}
@for ($i = 1; $i <= $qty; $i++) @php $serial = str_pad($i, 3, '0', STR_PAD_LEFT); // هر لیبل unique token: $tokenSerial = $baseToken . '-' . $serial; @endphp
PAINT / STOCK
{{ $warehouse }}
{{ $productName }}
TOKEN
{{ $tokenSerial }}
QTY
1
@endfor
@endsection @section('pageJs') {{-- JSBarcode (CODE128) --}} @endsection