Mysql
 sql >> Base de données >  >> RDS >> Mysql

Appartient à beaucoup obtenir toutes les lignes (Laravel)

Vous voudrez renvoyer un objet de requête.

public function properties()
{
    if ($this->isAdmin()) {
        return Property::query();
    } elseif ($this->isManager() || $this->isBroker()) {
        return $this->belongsToMany('App\Property');
    }

    return null;
}