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
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: