@php $addProductPermission = user()->permission('add_product'); @endphp
@foreach ($currencies as $currency)
id == company()->currency_id) selected @endif value="{{ $currency->id }}"> {{ $currency->currency_code . ' (' . $currency->currency_symbol . ')' }}
@endforeach
{{ __('app.select') . ' ' . __('app.product') . ' ' . __('app.category') }}
@foreach ($categories as $category)
{{ $category->category_name }}
@endforeach
@if(in_array('products', user_modules()) || in_array('purchase', user_modules()))
@foreach ($products as $item)
{{ $item->name }}
@endforeach
@if ($addProductPermission == 'all' || $addProductPermission == 'added')
@lang('app.add')
@endif
@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.unitPrice")
@lang('modules.invoices.tax')
@lang('modules.invoices.amount')
{{ $item->item_summary }}
@foreach ($taxes as $tax)
taxes) && array_search($tax->id, json_decode($item->taxes)) !== false) selected @endif value="{{ $tax->id }}"> {{ $tax->tax_name }}: {{ $tax->rate_percent }}%
@endforeach
{{ number_format((float) $item->amount, 2, '.', '') }}
{{ $item->item_summary }}
@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')
@foreach ($units as $unit)
{{ $unit->unit_type }}
@endforeach
@foreach ($taxes as $tax)
{{ $tax->tax_name }}: {{ $tax->rate_percent }}%
@endforeach
0.00
@endif
@lang('modules.invoices.addItem')
@lang('modules.invoices.subTotal')
0.00
@lang('modules.invoices.discount')
discount_type == 'percent') selected @endif value="percent">%
discount_type == 'fixed') selected @endif value="fixed"> @lang('modules.invoices.amount')
{{ isset($estimate) ? number_format((float) $estimate->discount, 2, '.', '') : '0.00' }}
@lang('modules.invoices.tax')
0.00
@lang('modules.invoices.total')
0.00
@lang('app.save')
@lang('app.cancel')