我刚刚拿起Laravel。我正在尝试更改Registrar.php
以满足我在Laravel 5中的需求。
注册流程如下:
我无法一步完成帐户,我需要先从服务中获取信息。
在vanilla PHP中,我会做一个AJAX调用来启动请求,并允许用户在AJAX调用返回数据后继续并登录。
答案 0 :(得分:0)
您可以执行以下操作:
// Create the new user
$user = User::create([ /* array with details goes here */ ]);
// Do your other stuff...
// Update the user's other details
$user->detail = "Some detail"; // add as many columns as you like
$user->save();
中可找到的模型的任何附加详细信息