Mysql
 sql >> Database >  >> RDS >> Mysql

Appartiene a molti prendi tutte le righe (Laravel)

Vorrai restituire un oggetto query.

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

    return null;
}