Files
nairobi/app/components/admin/widget/cards/table_component.rb
2021-01-12 14:50:37 +01:00

15 lines
327 B
Ruby

class Admin::Widget::Cards::TableComponent < ApplicationComponent
attr_reader :cards, :no_cards_message
def initialize(cards, no_cards_message:)
@cards = cards
@no_cards_message = no_cards_message
end
private
def attribute_name(attribute)
::Widget::Card.human_attribute_name(attribute)
end
end