save image in public folder instead storage laravel 5

后端 未结 3 1923
无人及你
无人及你 2020-12-25 14:12

i wanna save my avatar at \"Public\" folder and ther retrieve.

ok. i can save it but in \"storage/app\" folder instead \"public\"

my friend told me go to \"c

3条回答
  •  -上瘾入骨i
    2020-12-25 14:48

    You'll need to link your storage directory to your public folder with:

    php artisan storage:link
    

    Once you've done that, to display it in the view you can do:

    {{ asset('storage/file.txt') }}
    

    Or in your case:

    
    

提交回复
热议问题