public function getUserById($userId)
 {
     $result = Instagram_user::whereId($userId)->first();
     //first() function in sql returns the first value of the selected column
     return $result;
 }