Answers for "laravel artisan serve command through route"

0

execute artisan command from route

Route::get('clear_cache', function () {

    Artisan::call('cache:clear');

    dd("Cache is cleared");

});
Posted by: Guest on May-11-2021

Code answers related to "laravel artisan serve command through route"

Browse Popular Code Answers by Language