config clear without artisan

Solutions on MaxInterview for config clear without artisan by the best coders in the world

showing results for - "config clear without artisan"
Leonardo
20 Jul 2020
1Route::get('/clear-config', function() {
2   $exitCode = Artisan::call('config:clear');
3   // return what you want
4});