Display records found by ActiveRelation in HTML

34 Views Asked by At

I want to display the records returned by following line in html,

       @var = User.where("first_name like ?", "%"+params[:searchTextField]+"%")

How do i display these in html?

1

There are 1 best solutions below

0
On BEST ANSWER

Like this

<% @var.each do |v| %>
  <%= v.first_name %>
  <%= ... %>
<% end %>