π {{ $invoice->phone }}
@endif @if($invoice->address){{ $invoice->address }}
@endif @if($invoice->city || $invoice->state){{ $invoice->city }}{{ $invoice->city && $invoice->state ? ', ' : '' }}{{ $invoice->state }}{{ $invoice->zip_code ? ' ' . $invoice->zip_code : '' }}
@endif| DESCRIPTION | QTY | UNIT | RATE | TAXES | DISCOUNT | HSN Code | AMOUNT |
|---|---|---|---|---|---|---|---|
| {{ $item->description }} | |||||||
| {{ $item->long_description ?: $item->description }} | |||||||
|
{{ $item->description }}
@if($item->long_description)
{{ $item->long_description }}
@endif
|
{{ number_format($item->quantity, 2) }} | @php $unitText = $item->unit ?? ($product && $product->unit ? $product->unit->short_name : null); @endphp @if($unitText) {{ $unitText }} @else - @endif | {{ number_format($item->rate, 2) }} |
@foreach($itemTaxIds as $taxId)
{{ $taxesMap[$taxId] ?? 0 }}%
@endforeach
@if(empty($itemTaxIds))
-
@endif
|
@if(($item->discount_amount ?? 0) > 0)
-βΉ{{ number_format($item->discount_amount, 2) }}
({{ $item->discount_type === 'percentage' ? number_format($item->discount_value, 2) . '%' : 'βΉ' . number_format($item->discount_value, 2) }})
@else
-
@endif
|
@if($product && $product->hsn_code) {{ $product->hsn_code }} @else - @endif | {{ number_format($item->amount, 2) }} |
| No items | |||||||
β Fully Paid
@endif