laravel-uuid maintained by neelbhanushali
Laravel UUID
A trait that provides support for uuid for eloquent models.
composer require neelbhanushali/laravel-uuid
- use
NeelBhanushali\LaravelUUID\Traits\HasUUIDtrait in your Eloquent Model. - Make sure the
primary keyin the migration for that model is added using$table->uuid('KEY_NAME')->primary();.