How to display a Rails flash notice upon redirect?
Remove the .now. So just write: flash[:notice] = ‘Successfully checked in’ redirect_to check_in_path The .now is specifically supposed to be used when you are just rendering and not redirecting. When redirecting, the .now is not to be used.