| {{ ucfirst(__('laravel-crm::lang.item')) }} | {{ ucfirst(__('laravel-crm::lang.price')) }} | {{ ucfirst(__('laravel-crm::lang.quantity')) }} | {{ $taxName }} | {{ ucfirst(__('laravel-crm::lang.amount')) }} |
|---|---|---|---|---|
|
{{ $invoiceProduct->product->name }}
@if($invoiceProduct->product->code)
{{ $invoiceProduct->product->code }} @endif |
{{ money($invoiceProduct->price ?? null, $invoiceProduct->currency) }} | {{ $invoiceProduct->quantity }} | {{ money($invoiceProduct->tax_amount ?? null, $invoiceProduct->currency) }} | @if(! \VentureDrake\LaravelCrm\Http\Helpers\CheckAmount\lineAmount($invoiceProduct)) {{ money($invoiceProduct->amount ?? null, $invoiceProduct->currency) }} @else {{ money($invoiceProduct->amount ?? null, $invoiceProduct->currency) }} @endif |
|
{{ ucfirst(__('laravel-crm::lang.comments')) }} {{ $invoiceProduct->comments }} |
||||
| {{ ucfirst(__('laravel-crm::lang.sub_total')) }} | {{ money($invoice->subtotal, $invoice->currency) }} | |||
| {{ ucfirst(__('laravel-crm::lang.tax')) }} | {{ money($invoice->tax, $invoice->currency) }} | |||
| {{ ucfirst(__('laravel-crm::lang.total')) }} | {{ money($invoice->total, $invoice->currency) }} | |||