Admin: voce Fatturazione nel menu e elenco società.

Rende raggiungibili pagamenti e fatture PDF senza passare solo dal dettaglio squadra.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-02 17:27:09 +02:00
parent ef805984ee
commit b073ded6c1
5 changed files with 49 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
module Admin
class BillingController < BaseController
def index
@clubs = Club.order(:name).includes(:billing_payments, :billing_invoices)
end
end
end