You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Banner extends Model
{
/** * Get all of the series for the banner. */publicfunctionseries()
{
return$this->morphedByMany(Serie::class, 'bannerable')
->using(Bannerable::class)
->withPivot('id');
}
/** * Get all of the readlists for the banner. */publicfunctionreadlists()
{
return$this->morphedByMany(Readlist::class, 'bannerable')
->using(Bannerable::class)
->withPivot('id');
}
}
Hi,
I have a problem with this relationship:
and in "BannerSchema" i have:
But in the response of the endpoint not show anything respect to the relationship:
I don't understand what I'm doing wrong, could someone guide me?
The text was updated successfully, but these errors were encountered: