cownet / laravel-uuid
Laravel extension for UUID use in model
v0.1.6
2023-04-13 13:16 UTC
Requires
- php: ^8.0
- flynowpaylater/laravel-uuid: dev-master
- illuminate/database: *
Requires (Dev)
- phpunit/phpunit: ^9.3
This package is not auto-updated.
Last update: 2026-03-13 02:29:42 UTC
README
Laravel UUID
Laravel extension for UUID use in model. This library is a wrapper that allows WebPatser UUID library to auto-integrate within Laravel eloquent model.
Installation
Using composer
composer require cownet/laravel-uuid
Setup
Change model namespace from
use Illuminate\Database\Eloquent\Model;
To
use Cownet\Laravel\Uuid\Model;
To enable UUID in your model, as per Laravel's documentation, apply public $incrementing = false; on your model
and it will have UUID support instead of auto incrementing.