eig/eloquent-uuid

Easy UUID for Eloquent Models
1,568 59
Install
composer require eig/eloquent-uuid
Latest Version:3.0.0
PHP:^8.0.2
License:MIT
Last Updated:Dec 8, 2022
Links: GitHub  ·  Packagist
Maintainer: excellentingenuity

EloquentUUID

Build Status Latest Stable Version Coverage Status License StyleCI Total Downloads Latest Unstable Version

A Package for easily adding UUID's to Eloquent Models supporting Laravel 5.5+

Usage

To use UUID in an Eloquent Model install the package with:

composer require eig/eloquent-uuid

Then in your Model instead of extending Model extend EloquentUUID like so:

<?php

namespace App;

use eig\EloquentUUID\EloquentUUID;

class UUIDModel extends EloquentUUID
{

}

Then in your migrations make sure you set id to string or uuid like this:

public function up()
    {
        Schema::create('client_models', function (Blueprint $table) {
            $table->uuid('id');
            $table->softDeletes();
            $table->timestamps();
        });
    }

User UUID Model

For Laravel 5.3+, the standard user model that comes with the framework extends Authenticatble for the new multi-auth system. To add in UUID's to the user model extend eig\EloquentUUID\UUIDUser which will add in the UUID to the user while still extending Laravel's Authenticatable class. The migration schema changes for extending EloquentUUID are the same for extending from UUIDUser.

UUID Trait

As of version 1.1.0, EloquentUUID now has a trait named UUID in the namespace eig\EloquentUUID\Traits\UUID, that you can use to compose a UUID class. The trait implements a UUID assignment in a __constructor() method. The migration schema changes for extending EloquentUUID are the same for using the UUID trait.

Supported PHP Versions

Related Packages

stevenmaguire/laravel-uuid-model

Create non-incrementing Laravel models whose primary key is a UUID

46 4
nilportugues/serializer-eloquent

Eloquent Driver for NilPortugues Serializer outputting valid API responses in JS...

36,455 5
dyrynda/laravel-model-uuid

This package allows you to easily work with UUIDs in your Laravel models.

3,142,183 484
stevenmaguire/laravel-cache

Seamlessly adding caching to Laravel service objects

1,758 17
davidmpeace/immutability

A simple Laravel package that allows you to enforce immutable attributes on Eloq...

20,474 6