Search by

andregumieri / laravel-uxid

andregumieri

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

Package info

github.com/andregumieri/laravel-uxid

pkg:composer/andregumieri/laravel-uxid

Statistics

Installs: 937

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.7 2026-09-11 21:00 UTC

This package is auto-updated.

Last update: 2026-09-11 21:01:24 UTC


README

Migrations

UXID

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

Foreign

    ...
    $table->foreignUxidFor(ModelWithUxid::class)
    ...

Models

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

class User extends Model
{
    use HasUxid;
}