Download the PHP package marshmallow/nova-field-string-generator without Composer
On this page you can find all versions of the php package marshmallow/nova-field-string-generator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download marshmallow/nova-field-string-generator
More information about marshmallow/nova-field-string-generator
Files in marshmallow/nova-field-string-generator
Download marshmallow/nova-field-string-generator
More information about marshmallow/nova-field-string-generator
Files in marshmallow/nova-field-string-generator
Vendor marshmallow
Package nova-field-string-generator
Short Description A Laravel Nova field for generating a random string. This can be used for a Text field and for a Password field.
License MIT
Package nova-field-string-generator
Short Description A Laravel Nova field for generating a random string. This can be used for a Text field and for a Password field.
License MIT
Please rate this library. Is it a good library?
Informations about the package nova-field-string-generator
Nova Random String Generation Field
A Laravel Nova field for generating a random string
Installation:
You can install the package in to a Laravel app that uses Nova via composer:
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.
All versions of nova-field-string-generator with dependencies
PHP Build Version
Package Version
The package marshmallow/nova-field-string-generator contains the following files
Loading the files please wait ....