Add Simple Search Form to Rails Projects
How can you add simple search form to rails project ?
You want to add search form, but you don’t no. HOW?
Let’s start, firstly you should use ransack and
will_paginate gems in your Gemfile
then you should write in
terminal bundle
.
Then open controller which you want to add search bar, like ;
projects_controller
1 2 3 4 5 |
|
When you added controller, you should add below code which relation to index file ;
projects/index.html.haml
1 2 3 4 |
|
That’s all .
I hope helped to you .