info(' ------ Begin rConfig Laravel Clear Out! ------'); // echo exec('printf "hello\nworld\n"'); // echo exec('echo -e "This is line 1\r\nThis is line 2"'); Artisan::call('config:clear'); $this->info('------ Config Cleared! ------'); Artisan::call('cache:clear'); $this->info('------ Cache Cleared! ------'); Artisan::call('route:clear'); $this->info('------ Routes Cleared! ------'); Artisan::call('view:clear'); $this->info('------ Views Cleared! ------'); Artisan::call('config:cache'); $this->info('------ Config Cached! ------'); Artisan::call('route:cache'); $this->info('------ Routes Cached! ------'); Artisan::call('view:cache'); $this->info('------ Views Cached! ------'); Artisan::call('optimize'); $this->info('------ Optimized! ------'); Artisan::call('queue:restart'); $this->info('------ Queues Restarted! ------'); if (!getenv('IS_DOCKER')) { echo exec('sudo supervisorctl update') . PHP_EOL; echo exec('sudo supervisorctl reread') . PHP_EOL; echo exec('if [ -f /etc/redhat-release ]; then systemctl restart supervisord; fi;') . PHP_EOL; echo exec('if [ -f /etc/lsb-release ]; then systemctl restart supervisor; fi;') . PHP_EOL; custom_chown(rconfig_appdir_path()); } if ( getenv('IS_DOCKER') === "true") { chmod('/var/www/html/storage', 0777); } $this->info('------ Permissions Updated! ------'); echo exec('composer dump-autoload') . PHP_EOL; $this->info(config('app.name') . ' application settings have been cleared!'); } }