i'm looking to fetch the collection from one model to display over the all pages.
Application.html.erb
 <ul>
    <% @category.each do |c| %>
   <li><%= c.name %></li></ul>
        <% end %>
        </ul>
Controller
 @categories = Category.all
how I fit it in the Application controller without having to copy and paste on all controllers?
 
     
    