@extends('business::layouts.blank') @section('title') {{ __('Invoice') }} @endsection @section('main_content')
@foreach ($generatedBarcodes ?? [] as $barcode)
@if ($barcode['show_product_name'])

{{ $barcode['product_name'] }}

@endif @if ($barcode['show_product_price'])

Price: {{ currency_format($barcode['product_price'], currency:business_currency()) }}

@endif @if ($barcode['show_pack_date'])

Packing Date: {{ $barcode['packing_date'] }}

@endif Barcode Image @if ($barcode['show_product_code'])

{{ $barcode['product_code'] }}

@endif
@endforeach
@endsection