@extends('layouts.app') @section('title', __('barcode.print_labels')) @section('css') {{-- --}} @include('labels::layouts.partials.css_custom.enhanced-labels') @endsection @section('content')

@lang('barcode.print_labels')

Enhanced interface for generating product labels

{!! Form::open(['url' => '#', 'method' => 'post', 'id' => 'preview_setting_form', 'onsubmit' => 'return false']) !!}

@lang('product.add_product_for_labels')

{!! Form::text('search_product', null, [ 'class' => 'enhanced-input', 'id' => 'search_product_for_label', 'placeholder' => __('lang_v1.enter_product_name_to_print_labels'), 'autofocus' ]); !!}
@if(request()->session()->get('business.enable_lot_number') == 1) @endif @if(request()->session()->get('business.enable_product_expiry') == 1) @endif @include('labels.partials.show_table_rows', ['index' => 0])
@lang('barcode.products') @lang('barcode.no_of_labels')@lang('lang_v1.lot_number')@lang('product.exp_date')@lang('lang_v1.packing_date') @lang('lang_v1.selling_price_group')

Label Settings

{!! Form::select('barcode_setting', $barcode_settings, !empty($default) ? $default->id : null, [ 'class' => 'enhanced-select', 'onchange' => 'fetchPreview()' ]); !!}

Label Elements

Business Image
px
@lang('barcode.barcodes')
in
@lang('barcode.print_qrcode')
in
@lang('barcode.print_name')
px
@lang('product.sku')
px
@lang('barcode.print_variations')
px
@lang('barcode.print_price')
px
@lang('barcode.print_business_name')
px
@lang('lang_v1.print_packing_date')
px
@if(request()->session()->get('business.enable_lot_number') == 1)
@lang('lang_v1.print_lot_number')
px
@endif @if(request()->session()->get('business.enable_product_expiry') == 1)
@lang('lang_v1.print_exp_date')
px
@endif @php $custom_labels = json_decode(session('business.custom_labels'), true); $product_custom_fields = !empty($custom_labels['product']) ? $custom_labels['product'] : []; @endphp @foreach($product_custom_fields as $index => $cf) @if(!empty($cf)) @php $field_name = 'product_custom_field' . $loop->iteration; @endphp
{{ $cf }}
px
@endif @endforeach

Label Preview

Add products to see preview

{!! Form::close() !!}
@endsection @section('javascript') {{-- --}} @include('labels::layouts.partials.js_custom.labels-js') {{-- --}} @include('labels::layouts.partials.js_custom.labels-enhancements-js') @endsection