我想在用户 Table 中插入一个外键,但它在 Laravel 8 中以 fortify 插入为空
I want to insert a ForeignKey in users Table but it inserted as null with fortify in Laravel 8
我添加了一个 foreignKey 列 o 为 user 指定了一个角色。
这是 users table : 在我将 nullable() 添加到 [=57= 之前] 列他们被告知 role_id 列没有默认值,当我添加 nullable() 他们将 NULL 值插入 table
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('phone_number')->unique();
$table->string('email')->unique()->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->integer('role_id')->unsigned()->nullable();
$table->rememberToken();
$table->timestamps();
$table->foreign('role_id')->references('id')->on('roles')->onDelete('cascade');
});
这是 角色 table:
Schema::create('roles', function (Blueprint $table) {
$table->increments('id');
$table->string('type');
$table->timestamps();
});
这是 role 列的 blade 代码:
我在 blade 上添加了一个数组,以在属性名称为“role_id”的选项标记中显示其内容,如您所见在我的 blade 代码中
@php
$role_array = ['employee', 'client'];
@endphp
<div class="form-group row">
<label for="role" class="col-md-4 col-form-label text-md-right">Role <span class="text-danger">*</span></label>
<div class="col-md-6">
<select id="role" name="role_id" class=" form-control">
<option selected>Choose...</option>
@foreach ($role_array as $x => $x_value)
<option value="{{++$x}}">{{$x_value}}</option>
@endforeach
</select>
</div>
</div>
这是“CreateNewUser.php”文件的创建方法:
public function create(array $input)
{
Validator::make($input, [
'name' => ['required', 'string', 'max:255'],
'email' => [
'string',
'email',
'max:255',
Rule::unique(User::class),
],
'phone_number' => [
'required',
'string',
'min:10',
'max:13',
Rule::unique(User::class),
],
'role_id' => [
'required',
Rule::unique(User::class),
],
'password' => $this->passwordRules(),
])->validate();
return User::create([
'name' => $input['name'],
'email' => $input['email'],
'phone_number' => $input['phone_number'],
'password' => Hash::make($input['password']),
]);
}
这是用户型号:
protected $fillable = [
'name',
'password',
'phone_number',
'email',
'role_id',
];
你必须通过 role_id
来创建方法
return User::create([
'name' => $input['name'],
'email' => $input['email'],
'phone_number' => $input['phone_number'],
'password' => Hash::make($input['password']),
'role_id' => $input['role_id'],
]);
也适用于控制器中的角色
$role_array=Role::pluck('type','id');
然后在视图中
<select id="role" name="role_id" class=" form-control">
<option selected>Choose...</option>
@foreach ($role_array as $x => $x_value)
<option value="{{$x}}">{{$x_value}}</option>
@endforeach
</select>
我添加了一个 foreignKey 列 o 为 user 指定了一个角色。 这是 users table : 在我将 nullable() 添加到 [=57= 之前] 列他们被告知 role_id 列没有默认值,当我添加 nullable() 他们将 NULL 值插入 table
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('phone_number')->unique();
$table->string('email')->unique()->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->integer('role_id')->unsigned()->nullable();
$table->rememberToken();
$table->timestamps();
$table->foreign('role_id')->references('id')->on('roles')->onDelete('cascade');
});
这是 角色 table:
Schema::create('roles', function (Blueprint $table) {
$table->increments('id');
$table->string('type');
$table->timestamps();
});
这是 role 列的 blade 代码: 我在 blade 上添加了一个数组,以在属性名称为“role_id”的选项标记中显示其内容,如您所见在我的 blade 代码中
@php
$role_array = ['employee', 'client'];
@endphp
<div class="form-group row">
<label for="role" class="col-md-4 col-form-label text-md-right">Role <span class="text-danger">*</span></label>
<div class="col-md-6">
<select id="role" name="role_id" class=" form-control">
<option selected>Choose...</option>
@foreach ($role_array as $x => $x_value)
<option value="{{++$x}}">{{$x_value}}</option>
@endforeach
</select>
</div>
</div>
这是“CreateNewUser.php”文件的创建方法:
public function create(array $input)
{
Validator::make($input, [
'name' => ['required', 'string', 'max:255'],
'email' => [
'string',
'email',
'max:255',
Rule::unique(User::class),
],
'phone_number' => [
'required',
'string',
'min:10',
'max:13',
Rule::unique(User::class),
],
'role_id' => [
'required',
Rule::unique(User::class),
],
'password' => $this->passwordRules(),
])->validate();
return User::create([
'name' => $input['name'],
'email' => $input['email'],
'phone_number' => $input['phone_number'],
'password' => Hash::make($input['password']),
]);
}
这是用户型号:
protected $fillable = [
'name',
'password',
'phone_number',
'email',
'role_id',
];
你必须通过 role_id
来创建方法
return User::create([
'name' => $input['name'],
'email' => $input['email'],
'phone_number' => $input['phone_number'],
'password' => Hash::make($input['password']),
'role_id' => $input['role_id'],
]);
也适用于控制器中的角色
$role_array=Role::pluck('type','id');
然后在视图中
<select id="role" name="role_id" class=" form-control">
<option selected>Choose...</option>
@foreach ($role_array as $x => $x_value)
<option value="{{$x}}">{{$x_value}}</option>
@endforeach
</select>