Last active
February 7, 2022 23:40
-
-
Save sdiama/afa11d7b602993cee3c8b53cd5552e94 to your computer and use it in GitHub Desktop.
Laravel: Update a DB field only once
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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