Posts

Showing posts from October, 2020

template integration link in bootstrap

 https://rubyyagi.com/how-to-integrate-html-bootstrap-theme-into-rails-6/

Route : self declaration and knowledge

  get '/patients/:id' , to: 'patients#show' get '/patients/:id' , to: 'patients#show' , as: 'patient' resources :photos resources :photos , :books , :videos get 'profile' , to: 'users#show' get 'profile' , action: :show , controller: 'users' resource :geocoder resolve( 'Geocoder' ) { [ :geocoder ] } namespace :admin do    resources :articles , :comments end resources :magazines do    resources :ads end resources :publishers do    resources :magazines do      resources :photos    end end resources :articles do    resources :comments , shallow: true end shallow do    resources :articles do      resources :comments      resources :quotes      resources :drafts    end end scope shallow_path: "sekret" do    resources :articles do      resources :comments , shallow: true    end end scop...