Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.66 KB

README.md

File metadata and controls

59 lines (37 loc) · 1.66 KB

Laravel ULID

Latest Version on Packagist Build Status Quality Score Total Downloads

This package allows you to easily work with ULIDs (Universally Unique Lexicographically Sortable Identifiers) in your Laravel models.

Installation

You can install the package via composer:

composer require nedmas/laravel-ulid

Usage

use Illuminate\Database\Eloquent\Model;
use Nedmas\Concerns\GeneratesUlid;

class Post extends Model
{
    use GeneratesUlid;
} 

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email nedmas@densham.technology instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.