79198843

Date: 2024-11-18 06:18:14
Score: 1
Natty:
Report link

First, modify the User model to properly implement Illuminate\Database\Eloquent\Concerns\HasUlids

Now in your user model

public function uniqueIds(): array
{
    return ['ulid'];
}

make sure in your migration $table->ulid('id');

then

php artisan optimize:clear
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: theihasan