'datetime', ]; protected $dates = ['last_on']; /* RELATIONS */ public function systems() { return $this->belongsToMany(System::class); } /* GENERAL METHODS */ /** * See if the user is already a member of the chosen network * * @param Domain $o * @return bool */ public function isMember(Domain $o): bool { return FALSE; } }