newsService = $newsService; } /** * @return void * * @throws BindingResolutionException */ public function get() { if (! env('LEAN_NEWS_ENABLED', true)) { $this->tpl->assign('hasNews', false); return; } try { $hasNews = $this->newsService->hasNews(session('userdata.id')); } catch (\Exception $e) { report($e); $hasNews = false; } $this->tpl->assign('hasNews', $hasNews); } }