Class: SaasPlatform::DashboardController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- SaasPlatform::DashboardController
- Defined in:
- app/controllers/saas_platform/dashboard_controller.rb
Instance Method Summary collapse
Methods inherited from ApplicationController
Instance Method Details
#index ⇒ Object
6 7 8 9 10 11 12 |
# File 'app/controllers/saas_platform/dashboard_controller.rb', line 6 def index @analytics = AnalyticsService.new(current_account) @revenue_data = @analytics.revenue_over_time @top_products = @analytics.top_products @user_growth = @analytics.user_growth @recent_orders = current_account.orders.includes(:user).order(created_at: :desc).limit(10) end |