Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Pertence a muitos obter todas as linhas (Laravel)


Você desejará retornar um objeto de consulta.
public function properties()
{
    if ($this->isAdmin()) {
        return Property::query();
    } elseif ($this->isManager() || $this->isBroker()) {
        return $this->belongsToMany('App\Property');
    }

    return null;
}