string('username')->primary(); $table->string('avatar'); $table->string('name'); } public function getProfileUrlAttribute(): string { return 'https://twitter.com/' . $this->username; } public function getKeyName() { return 'username'; } public function getIncrementing() { return false; } }