mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-24 22:11:01 -06:00
25 lines
600 B
PHP
25 lines
600 B
PHP
<?php
|
|
|
|
return [
|
|
'interest_rate' => [
|
|
'type' => 'anomaly.field_type.decimal',
|
|
'required' => true,
|
|
'config' => [
|
|
'default_value' => 1.98,
|
|
],
|
|
],
|
|
'advance_payment_percentage' => [
|
|
'type' => 'anomaly.field_type.decimal',
|
|
'required' => true,
|
|
'config' => [
|
|
'default_value' => 0.3,
|
|
],
|
|
],
|
|
'show_in_categories' => [
|
|
'type' => 'anomaly.field_type.checkboxes',
|
|
'config' => [
|
|
'handler' => 'Visiosoft\LoancalcModule\SettingHandler\CategoriesOptions@handle'
|
|
],
|
|
],
|
|
];
|