I have these models in my project:
class User {
public function favorites()
{
return $this->hasMany('App\Favorite');
}
}
-
class Product {
public function user()
{
return $this->belongsTo('App\User');
}
}
-
class Favorite {
public function user()
{
return $this->belongsTo('App\User');
}
public function product()
{
return $this->belongsTo('App\Product');
}
}
When I try to get the user's favorites i will do like this:-
$user = User::find(1);
return $user->favorites;
Or with the products in his favorites:-
return $user->favorites->load('product');
But It returns the results from both (products and favorites).
How do I get the results only from Product model through the Favorite?
Like I want to retrieve only the products that the user added to his favorites?
I already tried to make this in the User class and it doesn't work:-
public function favproducts()
{
return this->hasManyThrough('App\Product', 'App\Favorite');
}
Thank you in advance.