Looking to hire Laravel developers? Try LaraJobs

laravel-model-uuid maintained by rits-tecnologia

Description
Laravel Model UUID
Last update
2022/01/28 18:27 (dev-main)
License
Links
Downloads
11
Tags

Comments
comments powered by Disqus

Laravel Model UUID

This package provides UUID automatic generation for Laravel Models.

Installation

Install this package with composer.

composer require rits-tecnologia/laravel-model-uuid

Usage

Change your migration primary key

// change this
$table->id();

// to this
$table->uuid('id')->primary();

Add trait to your model

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class User extends Model
{
    use GeneratesUuid;
}