'datetime', ]; public function applications() { return $this->hasMany('App\Application', 'applicantUserID', 'id'); } public function votes() { return $this->hasMany('App\Vote', 'userID', 'id'); } public function profile() { return $this->hasOne('App\Profile', 'userID', 'id'); } }