Run Artisan Commands Without Terminal Shell Laravel

[Solved] Run Artisan Commands Without Terminal Shell Laravel | Php - Code Explorer | yomemimo.com
Question : laravel execute command from terminal

Answered by : lvb

php artisan command:name

Source : https://stackoverflow.com/a/42149172 | Last Update : Thu, 05 Aug 21

Question : Run artisan commands without terminal shell laravel

Answered by : shahzad-mahota

/*
|====================================================
| How to run artisan commands witout terminal/ shell
|====================================================
*/
Route::get('/run', function () { Artisan::call('storage:link');
});

Source : | Last Update : Tue, 13 Sep 22

Answers related to run artisan commands without terminal shell laravel

Code Explorer Popular Question For Php