[Vuejs]-I want a way to give path to my files which are outside of public folder in laravel

0👍

You can solve this problem by another command for creating a symbolic link by terminal/cmd/shh:

ln -s /path/to/laravel/storage/app/public /path/to/public/storage

This will create a folder in the public directory, which can be accessed from the public folder.

Leave a comment