uninitialized constant PersonsController::Users

447 Views Asked by At

I tried hard to find this exact match of my error but I am unable to do so. I am new to Ruby and stuck for long after this block. Please help. I have checked my route.rb file my controller method show and my show.html.erb file error remains.
I destroyed and created controller again and again to check but still the error remains.
Is it asking me to define/declare variable user?? have not I did so?? like in controller i did @user and then called databsae.. I think so.
Thanks in advance

The controller:

class PersonsController < ApplicationController

  def show
  @user = Users.find(params[:id])

  end
end

The view:

<%= provide(:title, @user.name %>
<h1> @user.name </h1>
<%[email protected] %>, <%[email protected] %>

The routes:

Rails.application.routes.draw do
  get 'persons/show'

  root 'staticpages#home'

  get 'help' => 'staticpages#help'

  get 'about' => 'staticpages#about'

  resources :persons
  resources :person

end
1

There are 1 best solutions below

12
On

Model names in Rails are singular:

@user = User.find(params[:id])