{{ __('No') }} : {{ $invoiceSettingPrefix }}{{ $invoiceInfo->invoice_id ?? 'N/A' }}
{{ __('Order Date ') }} : {{ $invoiceInfo->created_at?->format('Y-m-d') ?? 'N/A' }}
{{ __('SL') }}
|
@if (in_array(TABLE_COLUMN_PRODUCT, $invoiceSettingColumn ?? []))
{{ __('Product') }}
|
@endif
@if (in_array(TABLE_COLUMN_PLAN, $invoiceSettingColumn ?? []))
{{ __('Plan') }}
|
@endif
@if (in_array(TABLE_COLUMN_PRICE, $invoiceSettingColumn ?? []))
{{ __('Price') }}
|
@endif
@if (in_array(TABLE_SETUP_FEE, $invoiceSettingColumn ?? []))
{{ __('SetUp Fee') }}
|
@endif
@if (in_array(TABLE_COLUMN_QUANTITY, $invoiceSettingColumn ?? []))
{{ __('Quantity') }}
|
@endif
@if (in_array(TABLE_COLUMN_TOTAL, $invoiceSettingColumn ?? []))
{{ __('Total') }}
|
@endif
---|---|---|---|---|---|---|
{{ __('1') }} |
@if (in_array(TABLE_COLUMN_PRODUCT, $invoiceSettingColumn ?? []))
{{ $invoiceInfo->products_name ?? '' }} |
@endif
@if (in_array(TABLE_COLUMN_PLAN, $invoiceSettingColumn ?? []))
{{ $invoiceInfo->plans_name ?? '' }} |
@endif
@if (in_array(TABLE_COLUMN_PRICE, $invoiceSettingColumn ?? []))
{{ showPrice($invoiceInfo->amount ?? 0) }} |
@endif
@if (in_array(TABLE_SETUP_FEE, $invoiceSettingColumn ?? []))
{{ showPrice($invoiceInfo->setup_fees ?? 0) }} |
@endif
@if (in_array(TABLE_COLUMN_QUANTITY, $invoiceSettingColumn ?? []))
1 |
@endif
@if (in_array(TABLE_COLUMN_TOTAL, $invoiceSettingColumn ?? []))
{{ showPrice(($invoiceInfo->amount ?? 0) + ($invoiceInfo->setup_fees ?? 0)) }} |
@endif
{{ __('Subtotal') }}:
{{showPrice(($invoiceInfo->amount ?? 0) + ($invoiceInfo->setup_fees ?? 0))}}
{{ __('Discount') }}:
{{ showPrice($invoiceInfo->plan_discount ?? 0) }}
{{ __('Shipping Charge') }}:
{{ showPrice($invoiceInfo->order_shipping_cost ?? 0) }}
{{ __('Tax') }}:
{{ showPrice($invoiceInfo->order_tax_amount ?? 0) }}
{{ __('Total') }}:
{{ showPrice($invoiceInfo->total ?? 0) }}
{!! $invoiceSettingFooterText !!}
@endif