confirmToProceed()) { return; } /* * If the .env file does not exist, then key generation * will fail. So we create one if it does not already exist. */ if (! file_exists('.env')) { touch('.env'); } $this->call('migrate', ['--force' => true]); $this->call('db:seed', ['--class' => 'ActivityTypesTableSeeder', '--force' => true]); $this->call('db:seed', ['--class' => 'CountriesSeederTable', '--force' => true]); $this->call('storage:link'); } }