We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.find will return 1 record, for example
def show @recipe = Recipe.find(params[:id]) end
.where will return an array of results, for example
def show @worldrecipes = Country.where(:attribute => params[:name])