Simple unique code generator with optional configurations
kaantanis/coderator is a Laravel package for simple unique code generator with optional configurations.
It currently has 0 GitHub stars and 215 downloads on Packagist (latest version v1.0.3).
Install it with composer require kaantanis/coderator.
Discover more Laravel packages by kaantanis
or browse all Laravel packages to compare alternatives.
Last updated
This package provides a simple unique code generator with optional configurations.
You can install the package via composer:
composer require kaantanis/coderator
You can publish the config file with:
php artisan vendor:publish --tag="coderator-config"
This is the contents of the published config file:
return [
'default_length' => 6,
];
$coderator = new \KaanTanis\Coderator\Coderator();
$my_code = $coderator->model(\App\Models\Product:class)
->field('code') // required. For create unique code
->prefix('#PR') // optional. default is empty
->length(6) // optional. except prefix, default is 6
->generate(); // returns a unique code
// $my_code = '#PRAY81QH'
// Without optional configurations
$my_code = $coderator->model(\App\Models\Product:class)
->field('code') // required. For create unique code
->generate(); // returns a unique code
// $my_code = '8EYQHG'
// Now you can use it this unique code for your model. E.g. Product model
Product::create([
'code' => $my_code, // absolute unique code 8EYQHG
...
]);
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.