class TablesArrangementsController < ApplicationController def index @tables_arrangements = TablesArrangement.all.order(discomfort: :asc).limit(10) end def show @tables_arrangement = TablesArrangement.find(params[:id]) end end