Support the ongoing development of Laravel.io →
Database Eloquent Architecture

Hi!

I'm facing a problem with a belongsToMany relationsship on a custom pivot model I cannot solve. My custom Model works. I have a Game model, a Team model and a custom GameTeam model for the pivot table. Now I have an additional Bet model which has a belongsToMany relationship to the GameTeam model and the custom GameTeam model should also have a belongsToMany relationship to the Bet model. So there is another pivot table between GameTeam and Bet.

I always get the following error if I want to call $bet->gameTeams

Error: Argument 1 passed to Illuminate\Database\Eloquent\Relations\Pivot::__construct() must be an instance of Illuminate\Database\Eloquent\Model, none given

Here is my code:

Game Model


class Game extends Eloquent {

public function teams() {
	return $this -> belongsToMany('Team', 'game_team', 'game_id', 'team_id') -> withPivot('id','goals', 'approved');
}

public function newPivot(Eloquent $parent, array $attributes, $table, $exists) {
	if ($parent instanceof Team) {
		return new GameTeam($parent, $attributes, $table, $exists);
	}
	return parent::newPivot($parent, $attributes, $table, $exists);
}

}

Team model


class Team extends Eloquent {

public function games() {
	return $this -> belongsToMany('Game', 'game_team', 'team_id', 'game_id') -> withPivot('id','goals', 'approved');
}

public function newPivot(Eloquent $parent, array $attributes, $table, $exists) {
	if ($parent instanceof Game) {
		return new GameTeam($parent, $attributes, $table, $exists);
	}
	return parent::newPivot($parent, $attributes, $table, $exists);
}

}

GameTeam custom pivot model


class GameTeam extends Pivot {

protected $table = 'game_team';

public function team() {
	return $this -> belongsTo('Team');
}

public function game() {
	return $this -> belongsTo('Game');
}

public function bets() {
	return $this -> belongsToMany('Bet', 'game_team_bet', 'game_team_id', 'bet_id')-> withPivot('goals');
}

}

Bet model


class Bet extends Eloquent {

public function gameTeams() {
	return $this -> belongsToMany('GameTeam', 'game_team_bet', 'bet_id', 'game_team_id')-> withPivot('goals');
}

}

Last updated 2 years ago.
0

Your GameTeam model should extend Model (Eloquent), not Pivot, if you want to work with it like an ordinary model. Calling it as a related is such thing.

Pivot models can't be instantiated without parameters required by the constructor, that are those you have in newPivot method. And this is what you do, when you call a relation.

Last updated 2 years ago.
0

Thanks to jarektkaczyk! But if I extend GameTeam by Eloquent I am not able to get the pivot between game and team anymore. For example:

foreach($game->teams as $team) { $team->pivot->id; //This causes an error because now GameTeam isnt a Pivot anymore!!! }

Could you provide me a minimalistic example where you access GameTeam from both sides, one time from $game and one time from $bet?? That would save my weekend!!!!!!

Big thanks!!!

Last updated 2 years ago.
0

Did you find the answer to your problem @peiphb02. I am facing exact same problem but could not find any solution yet. Looking for help.

Last updated 2 years ago.
0

Have the same problem, what jarektkaczyk posted is right. It cant be done with a Pivot, not if you want to call the relation from the Bet model. I'm going to fix it with a Eloquent model instead of a Pivot. I will post examples soon, if i succeed at least :)

Last updated 2 years ago.
0

It would be nice if someone can post sample code that solves this problem.

Last updated 2 years ago.
0

I ran into the same issue. Does anyone solved the problem?

Last updated 2 years ago.
0

Not sure if this is just a Laravel version issue but you must extend Illuminate\Database\Eloquent\Relations\Pivot, instead of the model class.

Example:

<?php namespace App\Pivots;

use Illuminate\Database\Eloquent\Relations\Pivot;

class MyCustomPivot extends Pivot {

...

Then on the model you are targeting:


public function newPivot(Model $parent, array $attributes, $table, $exists)
{
	return new MyCustomPivot($parent, $attributes, $table, $exists);
}

But I am on the 5.0 develop branch. Don't know enough about 4.1 or 4.2 to confirm that this is the issue.

Last updated 10 years ago.
0

Is there a solution for this?

0

Sign in to participate in this thread!

Eventy

Your banner here too?

peiphb02 peiphb02 Joined 23 May 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.