Created
November 14, 2021 19:00
-
-
Save leben-jp/d55ed85527231bdbbf533ac1e5097acb to your computer and use it in GitHub Desktop.
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
$post = Post::find(1); | |
$post->comments()->saveMany([ | |
new Comment(['message' => 'First comment']), | |
new Comment(['message' => 'Second comment']), | |
]); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment