You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
517 B
27 lines
517 B
<?php
|
|
|
|
return [
|
|
'name' => 'Laravel-generator',
|
|
//the url to access
|
|
'route'=>'generator',
|
|
//the rule can be used by the field
|
|
'rules'=>[
|
|
'string',
|
|
'email',
|
|
'file',
|
|
'numeric',
|
|
'array',
|
|
'alpha',
|
|
'alpha_dash',
|
|
'alpha_num',
|
|
'date',
|
|
'boolean',
|
|
'distinct',
|
|
'phone',
|
|
'custom'
|
|
],
|
|
//difine your custom value
|
|
'customDummys'=>[
|
|
'DummyAuthor'=>env('DUMMY_AUTHOR','foryoufeng')
|
|
]
|
|
]; |