$post = Post::find(1);$post->comments()->saveMany([ new Comment(['message' => 'First comment']), new Comment(['message' => 'Second comment']),]);
class User extends Model
{
public function phone()
{
return $this->hasOne('AppPhone');
}
}