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

{{ __('Product Label Generator') }}

{{ __('Print QR labels to stick on item boxes.') }}

@for ($i = 0; $i < $copies; $i++) @php $qrUrl = 'https://api.qrserver.com/v1/create-qr-code/?size=220x220&data=' . urlencode($product->sku); @endphp

{{ __('Dari Stock Item Label') }}

{{ $product->name }}

{{ $product->sku }}

{{ __('QR Code :sku', ['sku' => $product->sku]) }}

{{ __('Stock') }}: {{ $product->sku }}

{{ __('Price') }}: {{ number_format($product->unit_price, 2) }} {{ config('stockiny.currency') }}

{{ __('Location') }}: {{ $product->location ?: '—' }}

@endfor
@endsection