@foreach ($invoice->subCalc as $index => $sub)
{{ $index + 1 }}
|
|
|
|
|
{{ $sub->price }}
|
{{ $sub->total }}
|
@endforeach
|
|
Total Value |
{{ numberFormat($invoice->amount) }}
|
|
Service Fee |
0.00
|
@if ($invoice->tax)
|
Tax {{ $invoice->tax }}% |
{{ numberFormat($invoice->tax_amount) }} |
@endif
|
{{ numberFormat($invoice->total_amount) }} |
|
|
|
Close
|