@extends('layouts/inventory_layout') @section('title', '| '.$moduleTitle) @section('content') @include('successMsg') {{-- --}}
Purchase List    
@foreach($data->inv_purchase_details as $key => $barcode) @php $purchaseBarcodeQuantity = 0; $posproductbarcode = ''; $purchaseBarcodeQuantity = $barcode->quantity; $posproductbarcode = $barcode->inv_product->barcode; @endphp @for($i=0; $i < $purchaseBarcodeQuantity;$i++ ) {{$barcode->inv_product->name}}
{!! DNS1D::getBarcodeSVG($posproductbarcode, "C128", 1.4,55,false) !!} {{-- {!! DNS1D::getBarcodeSVG($barcode->barcode_serial, "C128", 1.4,55,false) !!} --}}
Price: {{$barcode->inv_product->cost_price}} Tk.
@endfor @endforeach
@endsection