rails de ressources
resources :name_of_your_controller
canToo
resources :name_of_your_controller
resources :controller_name # => new create edit update index show destroy
resources :controller_name, only: [:index, :new, :create, :edit, :update]
# <=>
resources :controller_name, except: [:destroy, :show]
get '/patients/:id', to: 'patients#show'
# url: your_site/patients/12