/**
  * Get the revenue amounts for the application.
  *
  * @return Response
  */
 public function revenue()
 {
     return ['yearlyRecurringRevenue' => $this->indicators->yearlyRecurringRevenue(), 'monthlyRecurringRevenue' => $this->indicators->monthlyRecurringRevenue(), 'totalVolume' => $this->indicators->totalVolume()];
 }