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:
parent
959f172650
commit
eec55a38dd
@ -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) {
|
||||
|
||||
|
@ -45,8 +45,6 @@ class StartupCheck
|
||||
Session::flash('message', 'Cache cleared');
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Make sure our cache is built */
|
||||
$cached_tables = config('ninja.cached_tables');
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user