Skip to content

marshmallow-packages/nova-field-string-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

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.

About

A Laravel Nova field to generate a random string. This is really handy for generating passwords or API keys in your Nova resources 🔑

Resources

Stars

Watchers

Forks

Packages

No packages published