1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-05 18:52:44 +01:00

Debugging company deletion

This commit is contained in:
David Bomba 2020-06-20 09:46:49 +10:00
parent 959f172650
commit eec55a38dd
2 changed files with 4 additions and 2 deletions

View File

@ -466,9 +466,13 @@ class CompanyController extends BaseController
*/
public function destroy(DestroyCompanyRequest $request, Company $company)
{
info(print_r($request->all()));
info("destroying {$company->present()->name()} - {$company->hashed_id}");
$company_count = $company->account->companies->count();
$account = $company->account;
info("company count = {$company_count}");
if ($company_count == 1) {

View File

@ -45,8 +45,6 @@ class StartupCheck
Session::flash('message', 'Cache cleared');
}
/* Make sure our cache is built */
$cached_tables = config('ninja.cached_tables');