Class: SaasPlatform::DashboardController

Inherits:
ApplicationController show all
Defined in:
app/controllers/saas_platform/dashboard_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#current_account

Instance Method Details

#indexObject



6
7
8
9
10
11
12
# File 'app/controllers/saas_platform/dashboard_controller.rb', line 6

def index
  @analytics = AnalyticsService.new()
  @revenue_data = @analytics.revenue_over_time
  @top_products = @analytics.top_products
  @user_growth = @analytics.user_growth
  @recent_orders = .orders.includes(:user).order(created_at: :desc).limit(10)
end