Last active
April 25, 2021 01:22
-
-
Save omariqbalnaru/8a2edff546d8ae361ed5a72e2de7c6e4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| $department = Department::find(1); | |
| $department->name = 'new name'; | |
| $department->employees[0]->name = 'new employee name'; | |
| // saving employee | |
| $department->employees[0]->save(); | |
| // saving department | |
| $department->save(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment