Radio group partial is fixed.

This commit is contained in:
Sevan Nerse
2019-12-14 10:03:41 +03:00
parent 349ed320dd
commit aad96e7814
22 changed files with 32 additions and 30 deletions

View File

@ -36,7 +36,7 @@
</div>
@stack('color_input_end')
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('enabled', trans('general.enabled'), true) }}
</div>
</div>

View File

@ -42,7 +42,7 @@
</div>
@stack('color_input_end')
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('enabled', trans('general.enabled'), $category->enabled) }}
</div>
</div>

View File

@ -33,9 +33,9 @@
{{ Form::textGroup('thousands_separator', trans('currencies.thousands_separator'), 'slash', []) }}
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('enabled', trans('general.enabled'), true) }}
{{ Form::radioGroup('default_currency', trans('currencies.default')) }}
{{ Form::radioGroup('default_currency', trans('currencies.default'), false) }}
</div>
</div>

View File

@ -34,9 +34,9 @@
{{ Form::textGroup('thousands_separator', trans('currencies.thousands_separator'), 'slash', []) }}
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('enabled', trans('general.enabled'), $currency->enabled) }}
{{ Form::radioGroup('default_currency', trans('currencies.default')) }}
{{ Form::radioGroup('default_currency', trans('currencies.default'), $currency->default_currency) }}
</div>
</div>

View File

@ -30,7 +30,7 @@
{{ Form::selectGroup('list_limit', trans('settings.default.list_limit'), 'columns', ['10' => '10', '25' => '25', '50' => '50', '100' => '100'], !empty($setting['list_limit']) ? $setting['list_limit'] : null, []) }}
{{ Form::radioGroup('use_gravatar', trans('settings.default.use_gravatar')) }}
{{ Form::radioGroup('use_gravatar', trans('settings.default.use_gravatar'), $setting->use_gravatar) }}
</div>
</div>

View File

@ -18,11 +18,11 @@
<div class="card">
<div class="card-body">
<div class="row">
{{ Form::radioGroup('send_invoice_reminder', trans('settings.scheduling.send_invoice')) }}
{{ Form::radioGroup('send_invoice_reminder', trans('settings.scheduling.send_invoice'), $setting->send_invoice_reminder) }}
{{ Form::textGroup('invoice_days', trans('settings.scheduling.invoice_days'), 'calendar', []) }}
{{ Form::radioGroup('send_bill_reminder', trans('settings.scheduling.send_bill')) }}
{{ Form::radioGroup('send_bill_reminder', trans('settings.scheduling.send_bill'), $setting->send_bill_reminder) }}
{{ Form::textGroup('bill_days', trans('settings.scheduling.bill_days'), 'calendar', []) }}

View File

@ -23,7 +23,7 @@
{{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, 'normal') }}
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('enabled', trans('general.enabled'), true) }}
</div>
</div>

View File

@ -24,7 +24,7 @@
{{ Form::selectGroup('type', trans_choice('general.types', 1), 'bars', $types, $tax->type) }}
{{ Form::radioGroup('enabled', trans('general.enabled')) }}
{{ Form::radioGroup('enabled', trans('general.enabled'), $tax->enabled) }}
</div>
</div>