Laravel hasMany
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
$user = User::find(1);
$posts = $user->posts;
$user = User::find(1);
$post = new Post(['title' => 'New Post', 'body' => 'This is the body of the post']);
$user->posts()->save($post);