@extends('layouts/pos_layout') @section('title', '| '.$moduleTitle) @section('content') @include('successMsg') {{-- --}}
Purchase List    
@foreach($data->barcode_details as $key => $barcode) @php $purchaseBarcodeQuantity = 0; $posproductbarcode = ''; $purchaseBarcodeQuantity = $barcode->total_qty; if($isBarcodeStatus == 'true'){ $posproductbarcode = ($barcode->product->barcode) ? $barcode->product->barcode : 'N/A'; }else{ $posproductbarcode = $barcode->barcode_serial; } @endphp @for($i=0; $i < $purchaseBarcodeQuantity;$i++ ) {{$barcode->product->name}}
{!! DNS1D::getBarcodeSVG($posproductbarcode, "C128", 1.4,55,false) !!} {{-- {!! DNS1D::getBarcodeSVG($barcode->barcode_serial, "C128", 1.4,55,false) !!} --}}
Price: {{$barcode->product->sales_price}} Tk.
@endfor @endforeach
@endsection