在注册新用户时,如何在多个表(默认用户表和父表)中插入行?我知道我需要编辑模型,AuthController和视图.
namespace Jcfk\Models\User;
class User extends Model implements AuthenticatableContract,
CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'user';
/**
* @var string
*/
protected $primaryKey = 'user_id';
/**
* @var bool
*/
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['email', 'password'];
/**
* The attributes excluded from the model's JSON form.
* …
Run Code Online (Sandbox Code Playgroud)