request = $this->getRequestInstance($request); } /** * Execute the job. * * @return Account */ public function handle() { $account = Account::create($this->request->all()); // Set default account if ($this->request['default_account']) { setting()->set('default.account', $account->id); setting()->save(); } return $account; } }