Skip to content

Instantly share code, notes, and snippets.

@normykinz
Created March 7, 2023 13:33
Show Gist options
  • Save normykinz/0d49b8460d7427adef62f668fd697499 to your computer and use it in GitHub Desktop.
Save normykinz/0d49b8460d7427adef62f668fd697499 to your computer and use it in GitHub Desktop.
VsCode Laravel Model Setters and Setters
{
"Lavavel Model Getter and Setter": {
"prefix": "lgs",
"body": [
"public function get$1(): $2 {",
"\treturn $$this->attributes['$3'];",
"}\n",
"public function set$1($2 $$value): void {",
"\t$$this->attributes['$3'] = $$value;",
"}"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment