|
Credit Note Date {{ $record->invoice_date }} |
@endif
@if ($record->ref)
Source {{ $record->ref }} |
@endif
@if ($record->invoice_date_due)
Due Date {{ $record->invoice_date_due?->format('Y-m-d') }} |
@endif
| Product | Quantity | @if (app(\Webkul\Product\Settings\ProductSettings::class)->enable_uom)Unit | @endifUnit Price |
|---|---|---|---|
| {{ $item->product->name }} | {{ number_format($item->quantity) }} | @if (app(\Webkul\Product\Settings\ProductSettings::class)->enable_uom){{ $item->product->uom->name }} | @endif{{ money($item->price_unit, $record->currency->name) }} |
| Subtotal | - | {{ money($record->amount_untaxed, $record->currency->name) }} |
| Tax | - | {{ money($record->amount_tax, $record->currency->name) }} |
| Discount | - | -{{ money($record->total_discount, $record->currency->name) }} |
| Grand Total | - | {{ money($record->amount_total, $record->currency->name) }} |