关系一对多它不起作用



https://i.stack.imgur.com/GLM1p.jpg 有两个表,一个称为用户,另一个称为user_relation_user 我的关系是许多user_relation_user和迁移中的用户。我想用 php 工匠修补匠创建 10 个用户,所以我运行工厂(App\User::class, 10(->create((;最后,我访问我的数据库,所以请从用户中选择 * 有 10 个用户,但在user_relation_user不是 10 个 id 或它是空的

<?php
namespace App;
use IlluminateDatabaseEloquentModel;
class Administrator extends Model
{
protected $table = 'user_relation_user';
protected $primaryKey  = 'id';
protected $fillable = ['user_id'];

public function users(){
return $this->belongsTo(User::class,'user_id');
}
}

<?php
namespace App;
use IlluminateNotificationsNotifiable;
use IlluminateFoundationAuthUser as Authenticatable;
class User extends Authenticatable
{
use Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name', 'email', 'password',
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];
public function administrator(){
return $this->hasMany(Administrator::class,'user_id');
}
}
//hasMany

我的迁移

<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateUserRelationUserTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('user_relation_user', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->integer('user_id_admin')->unsigned();
$table->timestamps();
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*foreign
* @return void
*/
public function down()
{
Schema::dropIfExists('user_relation_user');
}
}

您定义的关系是正确的,您只需要在用户模型中定义一个关系即可。

例:

假设您正在开发一个博客系统,用户可以在其中发布博客。 那么将有两个模型用户模型和博客模型

在用户模型中,您必须定义用户关系,如下所示:

public function blogs()
{
return $this->hasmany(Blog::class);
}

然后在博客模型中

public function users()
{
return $this->belongsTo(User::class);
}

相关内容

  • 没有找到相关文章