mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 19:14:11 +00:00
19 lines
241 B
Ruby
19 lines
241 B
Ruby
class Account::Loan < ApplicationRecord
|
|
include Accountable
|
|
|
|
def icon
|
|
"icon-bank-accounts.svg"
|
|
end
|
|
|
|
def type_name
|
|
"Loan"
|
|
end
|
|
|
|
def color
|
|
{
|
|
background: "bg-[#EDF7F4]",
|
|
text: "text-[#1BD5A1]"
|
|
}
|
|
end
|
|
end
|