@php $addProductPermission = user()->permission('add_product'); @endphp

@lang('app.invoice') @lang('app.details')


@if($linkInvoicePermission == 'all')
@endif


@lang('modules.recurringInvoice.invoiceDate')

@lang('modules.invoices.customerCharged') @lang('app.daily')

@lang('modules.recurringInvoice.currentInvoiceDate') {{Carbon\Carbon::now()->translatedFormat(company()->date_format)}}

@lang('modules.recurringInvoice.nextInvoiceDate') {{Carbon\Carbon::now()->addDay()->translatedFormat(company()->date_format)}}

@lang('modules.recurringInvoice.soOn')


@if ($addProductPermission == 'all' || $addProductPermission == 'added') @lang('app.add') @endif
@if (isset($estimate)) @foreach ($estimate->items as $key => $item)
@if ($invoiceSetting->hsn_sac_code_show) @endif @if ($invoiceSetting->hsn_sac_code_show) @endif
@lang('app.description')@lang("app.hsnSac") @lang('modules.invoices.qty') @lang("modules.invoices.unitPrice") @lang('modules.invoices.tax') @lang('modules.invoices.amount')
@if (!is_null($item->product_id) && $item->product_id != 0) {{ $item->unit->unit_type }} @else @endif
{{ number_format((float) $item->amount, 2, '.', '') }}
@endforeach @else
@if ($invoiceSetting->hsn_sac_code_show) @endif @if ($invoiceSetting->hsn_sac_code_show) @endif
@lang('app.description')@lang("app.hsnSac")@lang('modules.invoices.qty') @lang("modules.invoices.unitPrice") @lang('modules.invoices.tax') @lang('modules.invoices.amount')
0.00
@endif

@lang('modules.invoices.subTotal') 0.00
@lang('modules.invoices.discount')
{{ isset($estimate) ? number_format((float) $estimate->discount, 2, '.', '') : '0.00' }}
@lang('modules.invoices.tax')
0.00
@lang('modules.invoices.total') 0.00

{!! nl2br($invoiceSetting->invoice_terms) !!}

@lang('app.save') @lang('app.cancel')