neelbhanushali/laravel-uuid

A trait that provides support for uuid for eloquent models.

1.0 2019-10-29 17:57 UTC

This package is auto-updated.

Last update: 2024-04-29 04:00:55 UTC


README

A trait that provides support for uuid for eloquent models.

composer require neelbhanushali/laravel-uuid

  • use NeelBhanushali\LaravelUUID\Traits\HasUUID trait in your Eloquent Model.
  • Make sure the primary key in the migration for that model is added using $table->uuid('KEY_NAME')->primary();.