├── .gitignore ├── README.md ├── composer.json └── src └── HasUuidTrait.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmills/eloquent-uuid/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmills/eloquent-uuid/HEAD/composer.json -------------------------------------------------------------------------------- /src/HasUuidTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmills/eloquent-uuid/HEAD/src/HasUuidTrait.php --------------------------------------------------------------------------------