<%= notice %>
Track and manage your credit card expenses and member burdens
Total Bills
<%= @credit_card_bills.count %>
Total Amount
<%= number_to_currency(@credit_card_bills.sum(:amount)) %>
Unbudgeted
<%= number_to_currency(@credit_card_bills.sum(&:unpaid)) %>
Description | Total Amount | Unbudgeted | Actions |
---|---|---|---|
<%= bill.description %>
|
<%= number_to_currency(bill.amount) %> | <%= number_to_currency(bill.unpaid) %> | <%= link_to "View", bill, class: "text-blue-600 hover:text-blue-900 mr-3" %> <%= link_to "Edit", edit_credit_card_bill_path(bill), class: "text-indigo-600 hover:text-indigo-900" %> |
Get started by creating a new credit card bill.