I have a cart which contains items, in my controller index method I use @cart = find_cart
to find my cart's items.
I'm trying to make a simple cart link which contains the amount of items in the cart at the top of my application layout using: <%= @cart.items.length %>
It will look like cart(2), if you have two items.
Without being repetitive (that is adding @cart = find_cart
to every single controller method) how do I efficiently make this data available across my entire application?