report = $report; parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { try { $this->report->send_notification(); \Log::info('Report has send'); $this->info('Report has send'); } catch (Exception $ex) { dd($ex); $this->error($ex->getMessage()); } } }