andregumieri/laravel-uxid

There is no license information available for the latest version (1.0.2) of this package.

1.0.2 2024-04-26 11:31 UTC

This package is auto-updated.

Last update: 2024-04-26 11:32:05 UTC


README

Migrations

Instead of using $table->id() use $table->string('id')->primary()

Models

use AndreGumieri\LaravelUxid\Database\Eloquent\Concerns\HasUxid;

class User extends Model
{
    use HasUxid;
}