Skip to content

Instantly share code, notes, and snippets.

@sdiama
Last active February 7, 2022 23:40
Show Gist options
  • Save sdiama/afa11d7b602993cee3c8b53cd5552e94 to your computer and use it in GitHub Desktop.
Save sdiama/afa11d7b602993cee3c8b53cd5552e94 to your computer and use it in GitHub Desktop.
Laravel: Update a DB field only once
class Mymodel extends Model
{
public function setMyfieldAttribute($value)
{
if ($this->myfield) {
return;
}
$this->attributes['myfield'] = $value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment