dashboardService = $dashboardService; } /** * Retrieves the Welcome widget data and assigns it to the template for display. * * @return void */ public function get() { $this->dashboardService->sendAnonymousTelemetry(); $welcomeData = $this->dashboardService->getWelcomeWidgetData((int) session('userdata.id')); array_map([$this->tpl, 'assign'], array_keys($welcomeData), array_values($welcomeData)); } }