close #45 Fixed: Not loading payment methods in general settings

This commit is contained in:
cuneytsenturk
2017-10-11 15:47:07 +03:00
parent 4f4a646146
commit be148e3799
12 changed files with 29 additions and 13 deletions

View File

@ -22,7 +22,7 @@
{{ Form::textareaGroup('description', trans('general.description')) }}
{{ Form::selectGroup('payment_method', trans_choice('general.payment_methods', 1), 'credit-card', ['cash' => 'Cash', 'bank' => 'Bank Transfer', 'paypal' => 'PayPal'], setting('general.default_payment_method')) }}
{{ Form::selectGroup('payment_method', trans_choice('general.payment_methods', 1), 'credit-card', $payment_methods, null) }}
{{ Form::textGroup('reference', trans('general.reference'), 'file-text-o', []) }}
</div>