@extends('layouts.app') @section('title', 'Credit Note Details') @section('content')
| Item Name | Quantity | Rate | Amount |
|---|---|---|---|
| {{ $item->name }} | {{ number_format($item->quantity, 2) }} | {{ formatCurrency($item->rate) }} | {{ formatCurrency($item->amount) }} |
| Subtotal | {{ formatCurrency($creditNote->subtotal) }} | ||
| Tax | {{ formatCurrency($creditNote->tax_total) }} | ||
| Total Credit | {{ formatCurrency($creditNote->total) }} | ||