garethnic/unique is a Laravel package for a laravel package to make uuid fields in a database table.
It currently has 3 GitHub stars and 8 downloads on Packagist.
Install it with composer require garethnic/unique.
Discover more Laravel packages by garethnic
or browse all Laravel packages to compare alternatives.
Last updated
This is a Laravel package that lets you add uuid's to a selected field.
Add the following to your composer.json file:
"garethnic/unique": "dev-master"
Add the garethnic\ServiceProvider to your config/app.php providers array:
garethnic\Unique\UniqueServiceProvider::class,
Then run the following command to copy config file.
$ vendor:publish
In your model import the trait:
namespace App;
use garethnic\Unique\Unique;
Then it's as simple as:
class User extends Authenticatable
{
use Unique;
...
You can specify which field to fill in the config/unique.php file:
return [
'field' => 'name'
];
Please see CHANGELOG for more information what has changed recently.
$ composer test
Please see CONTRIBUTING and CONDUCT for details.
The MIT License (MIT). Please see License File for more information.