'required|integer|exists:accounts,id', 'company_id' => 'required|integer|exists:companies,id', ]; } /** * Destroy a company. * * @param array $data * @return bool */ public function execute(array $data): bool { $this->validate($data); $company = Company::where('account_id', $data['account_id']) ->findOrFail($data['company_id']); $company->delete(); return true; } }