Currencies add new feature on account, bill, customer, invoice, vendor edit and create pages.

This commit is contained in:
Cüneyt Şentürk
2020-02-14 16:37:09 +03:00
parent b311fca666
commit 5f756454d6
14 changed files with 118 additions and 11 deletions

View File

@ -22,7 +22,7 @@
{{ Form::textGroup('number', trans('accounts.number'), 'pencil-alt') }}
{{ Form::selectGroup('currency_code', trans_choice('general.currencies', 1), 'exchange-alt', $currencies, $account->currency_code, ['required' => 'required', 'change' => 'onChangeCurrency']) }}
{{ Form::selectAddNewGroup('currency_code', trans_choice('general.currencies', 1), 'exchange-alt', $currencies, $account->currency_code, ['required' => 'required', 'path' => route('modals.currencies.create'), 'change' => 'onChangeCurrency']) }}
{{ Form::moneyGroup('opening_balance', trans('accounts.opening_balance'), 'balance-scale', ['required' => 'required', 'currency' => $currency], $account->opening_balance) }}