storage link laravel command code example
Example 1: laravel 6 link storage with public
php artisan storage:link
Example 2: create storage link laravel without terminal server
Its basically like the docs show...
https://laravel.com/docs/5.6/artisan#programmatically-executing-commands
Route::get('/foo', function () {
Artisan::call('storage:link');
});