Laravel-UUIDs In your migrations, replace $table->id(); with $table->uuid('id');. Add the WithUuids trait in your Eloquent model: class MyModel extends Model { use WithUuids; }