I'm doing a blog in Ruby on Rails and I have this error:
NoMethodError in Welcome # index
undefined method 'each' for nil: NilClass
<% @articles.each do |article| %> <h1><%= article.title %></h1> <div> <%= article.body %> </div> <% end %>
I already tried everything and according to me I'm not making any mistakes.
This is my controller:
class ArticlesController < ApplicationController
def index
@articles = Article.all
end
end
This is my routes.rb:
Rails.application.routes.draw do
resources :articles
root 'welcome#index'
end