Answers for "artisan commands in web.php"

PHP
0

get all artisan commands

php artisan list
Posted by: Guest on August-03-2021
2

artisan make command

php artisan make:command CommandName
Posted by: Guest on June-03-2020
0

larave artisan command run in web

Route::get('your-link', function () {
    \Artisan::call('cache:clear'); // command
    dd("Done!!!");
});
Posted by: Guest on April-15-2022

Code answers related to "artisan commands in web.php"

Browse Popular Code Answers by Language