Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Run artisan commands without terminal shell laravel

/*
|====================================================
| How to run artisan commands witout terminal/ shell
|====================================================
*/

Route::get('/run', function () {
    Artisan::call('storage:link');
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #Run #artisan #commands #terminal #shell #laravel
ADD COMMENT
Topic
Name
4+8 =