We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa847c commit 8990d35Copy full SHA for 8990d35
src/Uuids.php
@@ -14,7 +14,7 @@ protected static function bootUuids()
14
{
15
static::creating(function ($model) {
16
if (!$model->{config('uuid.default_uuid_column')}) {
17
- $model->{config('uuid.default_uuid_column')} = strtoupper(Uuid::uuid4()->toString());
+ $model->{config('uuid.default_uuid_column')} = Uuid::uuid4()->toString();
18
}
19
});
20
static::saving(function ($model) {
0 commit comments