Was this helpful?
User.model_name.human
# 'Customer'
User.human_attribute_name(:name)
# 'Name'# config/locales/views/en.yml
en:
users:
show:
title: 'Customer View'module Users
class Show < Hyperstack::Component
render do
H1 { t(:title) }
end
end
end
# <h1>Customer View</h1>
