I am trying to use the l
method from ActionView::Helpers::DateHelper in a rails concern that is eventually included in a model.
I have this in my concern :
module SessionSupport
extend ActiveSupport::Concern
include ActionView::Helpers::DateHelper
def dates_presenter
"#{l(start_date, format: :short)} - #{l(end_dates, format: :short)}}"
end
end
However I then get NoMethodError - undefined method
l' for InstanceFromModelInWhichConcernIsIncluded`
How can I use a helper method inside a model concern ?
Create your rails helper method
or
The most important methods of the I18n API are:
These have the aliases #t and #l so you can use them like this: