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