Rails Admin
Rails Admin gem provides a great UI for models that are created in our rails Application. With the help of this gem you can navigate through the record of your model.
Add gem "rails_admin" to Gemfile
Run bundle install.
Install rails_admin to your application
rails g rails_admin:install
Provide a namespace for the routes when asked. Press [Enter] to have /admin as default route.
Cheers !!