@extends('layouts.app') @section('css') @endsection @section('content')
{{ __('Barcode')}}
  • {{ __('No record found') }}
{{ __('Product Name') }} {{ __('Barcode Quantity') }} {{ __('Action') }}
@if(count($items) > 0)
@if(!empty($items)) @foreach ($items as $key => $value) @for($i = 0; $i < $quantities[$key]; $i++)
@if(isset($companyName)) {{ $companyName }} @endif @if(isset($product_name)) {{ $value }}
@endif @php $image = DNS1D::getBarcodePNG( $stock_ids[$key] , "C128"); @endphp barcode
@endfor @endforeach @endif
@endif
@endsection @section('js') @endsection