if i put an image in "storage/app/public/img/logo.png" and execute:
$ php artisan storage:link
How i get that logo.png in vue component?
<img src="storage/app/public/img/logo.png">
The requested it's ok (200) but that image not render, because is an SPA.
Thank you,
- Check
 config/filesystems.php(ie: unmodified default):
    // If server doesn't support "making symbolic links":
    // https://medium.com/@shafiya.ariff23/how-to-store-uploaded-images-in-public-folder-in-laravel-5-8-and-display-them-on-shared-hosting-e31c7f37a737
    'public' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
        'url' => env('APP_URL').'/storage',
        'visibility' => 'public',
    ],
- Save an image:
 
   $image = $request->file('image'); // something like that
   $slug = 'some-slug-99';
   $image->storeAs(
       'examples' .'/'. $slug,
       $image->getClientOriginalName(),
       'public'
   );
- Create the symlink from
 /storage/app/publictopublic/storage(ie: your public html folder which makesasset()work in Laravel Blade templates, I think but don't quote me on that)
$ php artisan storage:link
- Place the HTML in your Vue component:
 
<img
    v-for="image in example.images"
    :key="image.filename"
    :src="`/storage/examples/${example.slug}/${image.filename}`"
>
Also, read the docs: https://laravel.com/docs/8.x/filesystem
Hope my answer will help someone, Create a symbolic link by using this command
php artisan storage:link
now use it in you vue template as following
/storage/path/to/file
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With