class ChildrenController < ApplicationController def index @children = Child.all.order(:last_name, :first_name) respond_with @children end def lookup; end end