我在 Laravel 项目中通过 php artisan make:auth 命令生成了注册表单。我想通过添加用户在注册时可以选择他/她的性别的功能来对其进行一些定制。我制作了具有性别列的性别表,其中包含两个值 Man 和 Woman,并且还在 users 表中添加了 gender_id 列。我有很多关系,但是当我尝试注册用户时,他已注册但 gender_id 列仍然为 NULL。我不知道错误在哪里。任何帮助表示赞赏。这是我的代码。
<?php
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'gender_id', 'name', 'email', 'password', 'age',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
/**
* The attributes that should be cast to native types.
*
* @var array
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
public function genders()
{
return $this->belongsTo(Gender::class);
}
}
一只萌萌小番薯