下記のようなエラーが解決できません。
与えるべき引数が1に対して、0なので出ているのはわかりますが、
何を修正すれば解決するのかがわかりません。
解決方法を教えていただけますでしょうか?
erb
1<%= form_with (scope: :search, url: log_user_attendance_path, local: true, method: :get) do |f| %> 2 <%= f.date_select :indicater_reply_edit, 'date-with-stylesheet',{use_month_numbers: true, discard_day: true}, {class: "form-control bootstrap-date-only-width"} %> 3 <%= f.submit "検索", class: "btn btn-lg btn-primary" %> 4 <button type="button" class="btn btn-border-secondary">リセット</button> 5 <% end %>
rb
1*モデル 2 3def self.search(search) 4 Attendance.where(indicater_reply_edit: Time.local(2019,1)..Time.local(2025,12)) 5end 6
rb
1 2*コントローラー 3 4def log 5 @user = User.find(params[:user_id]) 6 @attendances = @user.attendances.search.where(indicater_reply_edit: "承認").order("worked_on ASC") 7end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。