Level 122
If you want to access externally, you must place your files on app/public
1 like
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
File is stored inside app/storage/app/uploads/ with the name song.mp3. I tried in URL different approaches but no success: http://localhost:8000/storage/uploads/song.mp3 doesn't work.
filesystems.php
'links' => [
public_path('storage') => storage_path('app/public'),
],
And don't forget to run:
php artisan storage:link --force
To rebuild the symlink
Please or to participate in this conversation.