Level 20
You could try to execute the Artisan command from a route or controller, e.g. something like:
Route::get('/storage-link', function () {
$exitCode = \Artisan::call('storage:link');
});
https://laravel.com/docs/5.6/artisan#programmatically-executing-commands
1 like