laravel-uuids maintained by marcandreappel
Description
Allows the usage of UUIDs in Eloquent models
Author
Last update
2022/08/10 10:05
(dev-master)
License
Downloads
1 447
Laravel-UUIDs
In your migrations, replace $table->id(); with $table->uuid('id');.
Add the WithUuids trait in your Eloquent model:
class MyModel extends Model
{
use WithUuids;
}