PHPackages                             rorecek/laravel-ulid - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. rorecek/laravel-ulid

ActiveLibrary[Database &amp; ORM](/categories/database)

rorecek/laravel-ulid
====================

Laravel package for ULID (Universally Unique Lexicographically Sortable Identifier)

v2.0.6(2y ago)52160.3k↓34.6%17[4 issues](https://github.com/rorecek/laravel-ulid/issues)[2 PRs](https://github.com/rorecek/laravel-ulid/pulls)1MITPHPPHP ^7.0|^8.0|^8.1CI failing

Since Aug 27Pushed 2y ago2 watchersCompare

[ Source](https://github.com/rorecek/laravel-ulid)[ Packagist](https://packagist.org/packages/rorecek/laravel-ulid)[ Docs](https://github.com/rorecek/laravel-ulid)[ RSS](/packages/rorecek-laravel-ulid/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (9)Used By (1)

Laravel ULID
============

[](#laravel-ulid)

Laravel package to generate ULID (Universally Unique Lexicographically Sortable Identifier), which also contains trait for your models that will let you generate ULID ids for your Eloquent models automatically. Based on [robinvdvleuten/php-ulid](https://github.com/robinvdvleuten/php-ulid).

### What is a ULID?

[](#what-is-a-ulid)

In many cases universally unique identifier (UUID) can be suboptimal for many uses-cases because:

- It isn't the most character efficient way of encoding 128 bits of randomness
- UUID v1/v2 is impractical in many environments, as it requires access to a unique, stable MAC address
- UUID v3/v5 requires a unique seed and produces randomly distributed IDs, which can cause fragmentation in many data structures
- UUID v4 provides no other information than randomness which can cause fragmentation in many data structures

Instead, ULID offers:

- 128-bit compatibility with UUID
- 1.21e+24 unique ULIDs per millisecond
- Lexicographically sortable!
- Canonically encoded as a 26 character string, as opposed to the 36 character UUID
- Uses Crockford's base32 for better efficiency and readability (5 bits per character)
- Case insensitive
- No special characters (URL safe)

You can read more [here](https://github.com/alizain/ulid)

### What are the benefits?

[](#what-are-the-benefits)

1. With distributed systems you can be pretty confident that the primary key’s will never collide.
2. When building a large scale application when an auto increment primary key is not ideal.
3. It makes replication trivial (as opposed to int’s, which makes it REALLY hard)
4. Safe enough doesn’t show the user that you are getting information by id, for example `https://example.com/item/10`

Installation
------------

[](#installation)

You can install this package via composer using this command:

```
 composer require rorecek/laravel-ulid:^2.0
```

#### Laravel 5.5+

[](#laravel-55)

There is nothing else to do as the service provider and facade are going to be automaticaly discovered.

#### Laravel 5.3 and 5.4

[](#laravel-53-and-54)

You must install the service provider and facade:

```
// config/app.php
'providers' => [
    ...
    Rorecek\Ulid\UlidServiceProvider::class,
];

...

'aliases' => [
    ...
    'Ulid' => Rorecek\Ulid\Facades\Ulid::class,
];
```

Usage
-----

[](#usage)

### Migrations

[](#migrations)

When using the migration you should change $table-&gt;increments('id') to:

```
$table->char('id', 26)->primary();
```

> Simply, the schema seems something like this.

```
Schema::create('items', function (Blueprint $table) {
  $table->char('id', 26)->primary();
  ....
  ....
  $table->timestamps();
});
```

If the related model is using an ULID, the column type should reflect that also.

```
Schema::create('items', function (Blueprint $table) {
  $table->char('id', 26)->primary();
  ....
  // related model that uses ULID
  $table->char('category_id', 26);
  $table->foreign('category_id')->references('id')->on('categories');
  ....
  $table->timestamps();
});
```

### Models

[](#models)

To set up a model to use ULID, simply use the HasUlid trait.

```
use Illuminate\Database\Eloquent\Model;
use Rorecek\Ulid\HasUlid;

class Item extends Model
{
  use HasUlid;
}
```

### Controller

[](#controller)

When you create a new instance of a model which uses ULIDs, this package will automatically add ULID as id of the model.

```
// 'HasUlid' trait will automatically generate and assign id field.
$item = Item::create(['name' => 'Awesome item']);
echo $item->id;
// 01brh9q9amqp7mt7xqqb6b5k58
```

Support
-------

[](#support)

If you believe you have found an issue, please report it using the [GitHub issue tracker](https://github.com/rorecek/laravel-ulid/issues), or better yet, fork the repository and submit a pull request.

If you're using this package, I'd love to hear your thoughts. Thanks!

License
-------

[](#license)

The MIT License (MIT). [Pavel Rorecek](https://laravelist.com)

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity46

Moderate usage in the ecosystem

Community19

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 87% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~304 days

Recently: every ~332 days

Total

8

Last Release

1059d ago

Major Versions

v1.0.0 → v2.0.02017-08-29

PHP version history (4 changes)v1.0.0PHP ^5.4 || ^7.0

v2.0.0PHP ^7.0

v2.0.4PHP ^7.0|^8.0

v2.0.6PHP ^7.0|^8.0|^8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/a075f7a729bd9caee248c2417be49bddebd3f4abf44ae1d5573625e0bcccf314?d=identicon)[rorecek](/maintainers/rorecek)

---

Top Contributors

[![rorecek](https://avatars.githubusercontent.com/u/6564004?v=4)](https://github.com/rorecek "rorecek (20 commits)")[![richardnbanks](https://avatars.githubusercontent.com/u/399107?v=4)](https://github.com/richardnbanks "richardnbanks (1 commits)")[![vov41knk](https://avatars.githubusercontent.com/u/2713991?v=4)](https://github.com/vov41knk "vov41knk (1 commits)")[![Xatta-Trone](https://avatars.githubusercontent.com/u/22274105?v=4)](https://github.com/Xatta-Trone "Xatta-Trone (1 commits)")

---

Tags

eloquentgeneratorlaraveltraituliduuididentifierguidulid

### Embed Badge

![Health badge](/badges/rorecek-laravel-ulid/health.svg)

```
[![Health](https://phpackages.com/badges/rorecek-laravel-ulid/health.svg)](https://phpackages.com/packages/rorecek-laravel-ulid)
```

###  Alternatives

[ramsey/uuid-doctrine

Use ramsey/uuid as a Doctrine field type.

90440.3M211](/packages/ramsey-uuid-doctrine)[identifier/identifier

Common Interfaces and Factories for Identifiers

3226.2k1](/packages/identifier-identifier)[ramsey/identifier

A PHP library for generating and working with identifiers, including UUIDs, ULIDs, and Snowflakes

603.0k1](/packages/ramsey-identifier)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
