minor fixes for create company routeS'

This commit is contained in:
David Bomba 2022-11-21 09:28:49 +11:00
parent f0e45bda76
commit a8fcec8ace

View File

@ -164,7 +164,8 @@ class CompanyController extends BaseController
*/ */
public function create(CreateCompanyRequest $request) public function create(CreateCompanyRequest $request)
{ {
$company = CompanyFactory::create(auth()->user()->company()->account->id); $cf = new \App\Factory\CompanyFactory;
$company = $cf->create(auth()->user()->company()->account->id);
return $this->itemResponse($company); return $this->itemResponse($company);
} }