Home > Back-end >  Laravel custom storage:link
Laravel custom storage:link

Time:02-23

I have a folder in the: -> storage/app/ and I need to make a symbolic link.

Since the php artisan storage:link links -> storage/app/public with -> public/storage.

What would be the best aproach to create a symbolic link for a folder that is not in the storage/app/public?

Or I always need to save images in the storage/app/public?

CodePudding user response:

You can make symlinks manually aswell. You could use midnight commander or linux command for that. You can open midnight commander with the command mc, and you can make symlink with the linux command ln (see: https://linuxize.com/post/how-to-create-symbolic-links-in-linux-using-the-ln-command/)

If you need further help let me know

  • Related