@extends('layouts.app')
@section('title', __('barcode.print_labels'))
@section('content')
{!! Form::open(['url' => '#', 'method' => 'post', 'id' => 'preview_setting_form', 'onsubmit' => 'return false']) !!}
@component('components.widget', ['class' => 'box-primary', 'title' => __('product.add_product_for_labels')])
{{-- --}}
| No. |
@lang( 'barcode.products' ) |
@lang( 'barcode.category_code' ) |
@lang('barcode.product_price') |
@lang( 'barcode.no_of_labels' ) |
@lang( 'lang_v1.last_printed_date' ) |
{{-- @if(request()->session()->get('business.enable_lot_number') == 1)
@lang( 'lang_v1.lot_number' ) |
@endif
@if(request()->session()->get('business.enable_product_expiry') == 1)
@lang( 'product.exp_date' ) |
@endif
@lang('lang_v1.packing_date') |
@lang('lang_v1.selling_price_group') | --}}
@include('business.partials.amazon_show_table_rows', ['index' => 0])
@endcomponent
@component('components.widget', ['class' => 'box-primary', 'title' => __( 'barcode.info_in_labels' )])
{!! Form::select('product_price', [$products[0]->AmazonSellerInventoryPrice => $products[0]->AmazonSellerInventoryPrice], !empty($default) ? $default->id : null, ['class' => 'form-control', 'id' => 'product_price']); !!}
{!! Form::select('product_title', [$products[0]->Title => $products[0]->Title], !empty($default) ? $default->id : null, ['class' => 'form-control', 'id' => 'product_title']); !!}
Update Product
@endcomponent
{!! Form::close() !!}
@lang( 'barcode.preview' )
@stop
@section('javascript')
{{-- --}}
@endsection