@php $company_settings = getCompanyAllSetting(); @endphp
{{ __('Item Type') }} | {{ __('Items') }} | {{ __('Quantity') }} | {{ __('Price') }} | {{ __('Discount') }} | {{ __('Tax') }} (%) | {{ __('Amount') }} {{ __('After discount & tax') }} |
|
---|---|---|---|---|---|---|---|
{{ Form::select('product_type', $product_type, null, ['class' => 'form-control product_type ', 'required' => 'required', 'placeholder' => '--']) }} |
@if (empty($product_services_count))
{{ __('Please create Product first.') }}{{ __('Add Product') }}
@endif
|
{{ Form::text('quantity', '', ['class' => 'form-control quantity', 'required' => 'required', 'placeholder' => __('Qty'), 'required' => 'required']) }}
|
{{ Form::text('price', '', ['class' => 'form-control price', 'required' => 'required', 'placeholder' => __('Price'), 'required' => 'required']) }}
{{ isset($company_settings['defult_currancy_symbol']) ? $company_settings['defult_currancy_symbol'] : '' }}
|
{{ Form::text('discount', '', ['class' => 'form-control discount', 'required' => 'required', 'placeholder' => __('Discount')]) }}
{{ isset($company_settings['defult_currancy_symbol']) ? $company_settings['defult_currancy_symbol'] : '' }}
|
{{ Form::hidden('tax', '', ['class' => 'form-control tax text-dark']) }}
{{ Form::hidden('itemTaxPrice', '', ['class' => 'form-control itemTaxPrice']) }}
{{ Form::hidden('itemTaxRate', '', ['class' => 'form-control itemTaxRate']) }}
|
{{ __('0.00') }} |
|
{{ Form::textarea('description', null, ['class' => 'form-control pro_description', 'rows' => '2', 'placeholder' => __('Description')]) }}
|
|||||||
{{ __('Sub Total') }} ({{ isset($company_settings['defult_currancy_symbol']) ? $company_settings['defult_currancy_symbol'] : '' }}) | {{ __('0.00') }} | ||||||
{{ __('Discount') }} ({{ isset($company_settings['defult_currancy_symbol']) ? $company_settings['defult_currancy_symbol'] : '' }}) | {{ __('0.00') }} | ||||||
{{ __('Tax') }} ({{ isset($company_settings['defult_currancy_symbol']) ? $company_settings['defult_currancy_symbol'] : '' }}) | {{ __('0.00') }} | ||||||
{{ __('Total Amount') }} ({{ isset($company_settings['defult_currancy_symbol']) ? $company_settings['defult_currancy_symbol'] : '' }}) | {{ __('0.00') }} |