2024-02-02 23:09:35 +00:00
|
|
|
class Account::Loan < ApplicationRecord
|
|
|
|
include Accountable
|
2024-02-02 23:06:29 +00:00
|
|
|
|
|
|
|
def icon
|
|
|
|
"icon-bank-accounts.svg"
|
|
|
|
end
|
|
|
|
|
|
|
|
def type_name
|
|
|
|
"Loan"
|
|
|
|
end
|
|
|
|
|
|
|
|
def color
|
|
|
|
{
|
|
|
|
background: "bg-[#EDF7F4]",
|
|
|
|
text: "text-[#1BD5A1]"
|
|
|
|
}
|
|
|
|
end
|
2024-02-02 23:09:35 +00:00
|
|
|
end
|