{{ $items->name }}
{{ $items->description }}
@if($invoiceSetting->hsn_sac_code_show)
@endif
{{ $items->price }}
@php $flag = 0; @endphp @foreach($taxes as $tax) @if (isset($items->taxes) && $items->taxes != "null" && array_search($tax->id, json_decode($items->taxes)) !== false) {{ $tax->tax_name }}: {{ $tax->rate_percent }}% @php $flag = 1; @endphp @endif @endforeach @if ($flag == 0) NA @endif

0