/home/techb158/ileadtechnology.com/SSM/app/Console/Commands
Edit: /home/techb158/ileadtechnology.com/SSM/app/Console/Commands/BackupDatabase.php (1319B)
backup = $backup;
$this->config = $config;
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$timezone = $this->config->setDefault();
if (isTestMode()) {
$this->error(trans('general.restricted_test_mode_action'));
return;
}
$this->backup->generate();
$this->info(trans('utility.backup_generated'));
}
}