I have many to many
relationships. Let's say I am using foo
and bar
class Foo extends Model
{
public function bars()
{
return $this->belongsToMany(Bar::class);
}
}
class Bar extends Model
{
public function foos()
{
return $this->belongsToMany(Foo::class);
}
}
how to show only Foo
that have Bar
so Foo
record that not associated with Bar
will not be displayed?...
from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2OShpZV
via IFTTT
Aucun commentaire:
Enregistrer un commentaire