Merge pull request #644 from OllieJC/custom

Add custom CSS and JS settings
This commit is contained in:
KodeStar
2022-03-11 20:28:28 +00:00
committed by GitHub
5 changed files with 63 additions and 2 deletions

View File

@@ -127,6 +127,9 @@ class Setting extends Model
}
$value = Form::select('value', $options, null, ['class' => 'form-control']);
break;
case 'textarea':
$value = Form::textarea('value', null, ['class' => 'form-control', 'cols' => '44', 'rows' => '15']);
break;
default:
$value = Form::text('value', null, ['class' => 'form-control']);
break;