get '/patients/:id', to: 'patients#show'
get '/patients/:id', to: 'patients#show', as: 'patient'
resources :brands, only: [:index, :show] do
resources :products, only: [:index, :show]
end
resource :basket, only: [:show, :update, :destroy]
resolve("Basket") { route_for(:basket) }
root to: 'pages#main'
root 'pages#main' # 上の省略形