marshmallow/nova-field-string-generator

这是一个用于生成随机字符串的 Laravel Nova 字段。它可以用于文本字段和密码字段。

v2.0.0 2022-05-06 14:35 UTC

README

用于生成随机字符串的 Laravel Nova 字段

安装

您可以通过 composer 将此包安装到使用 Nova 的 Laravel 应用程序中

composer require marshmallow/nova-field-string-generator
use Marshmallow\NovaGenerateString\GenerateString;

and add in the fields

GenerateString::make(__('Random string'), 'random_string')
    ->onlyOnForms()
    ->creationRules('required', 'string', 'min:12')
    ->updateRules('nullable', 'string', 'min:12')
    //You can specifiy the password length here
    ->length(12)
    //exclude characters types from password (Symbols, Numbers. Uppercase, Lowercase, Similar), do not call method to include all types
    ->excludeRules(['Symbols', 'Lowercase', 'Similar']),

GeneratePassword::make(__('Password'), 'password'),

## License:
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.