-bash-4.2$ php artisan storage:link dont work code example
Example 1: 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');
});
Example 2: laravel storage link without command line
Route::get('/foo', function () {
Artisan::call('storage:link');
});