create(); Model::reguard(); } private function create() { $user_id = $this->command->argument('user'); $company_id = $this->command->argument('company'); $this->dispatch(new CreateDashboard([ 'company_id' => $company_id, 'name' => trans_choice('general.dashboards', 1), 'with_widgets' => true, 'users' => $user_id, ])); } }