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');
}
}
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.
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!!!
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.
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 :)
It would be nice if someone can post sample code that solves this problem.
I ran into the same issue. Does anyone solved the problem?
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.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community