问题描述
我有联赛和球队表。
这些表之间的关系:
League model:
public function teams()
{
return $this->hasMany('App\Team');
}
Team Model:
public function league() {
return $this->belongsTo('App\League');
}
也许你有关于我如何让一支球队属于多个联赛的提示?
这里还有两个表模式:
Schema::create('leagues',function (Blueprint $table) {
$table->id();
$table->string('name');
$table->uuid('season_id')->nullable();
$table->timestamps();
});
Schema::create('teams',function (Blueprint $table) {
$table->id();
$table->integer('league_id')->nullable();
$table->string('name');
$table->string('city');
$table->string('team_logo')->nullable();
$table->string('stadium')->nullable();
$table->timestamps();
});
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)