ollico/laravel-uid

A handy package to generate unique identifiers for Eloquent models

Maintainers

Package info

github.com/ollico/laravel-uid

pkg:composer/ollico/laravel-uid

Statistics

Installs: 11 244

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 2

v6.0.0 2025-10-01 10:31 UTC

README

A handy little Laravel compatible package that creates unique identifiers like u5CVsCnxyXg for your Eloquent models.

Installation

Require this package

composer require ollico/uid

Usage

Configuration

Database

Add the $table->uid() in your Schemas:

Schema::create('your_table', function (Blueprint $table) {
    $table->uid();
})

Eloquent

Add the HasUid trait to your Models to add the capabilities:

  • Local scope $model->uid($uid)
  • Automatic generation of uid during the creating event

Good to know

We utilise HashIds under the hood.