symbolic link with the storage laravel folder 5.2

0

Currently there is the PHP command artisan storage: link that makes the symbolic link between public / storage and storage / app / public. I would like to know how to make this link in laravel 5.2 since in this version there is no such command

    
asked by anonymous 20.09.2017 / 19:47

1 answer

0

You can do this directly from the command line.

Linux:

ls -l -s meuprojeto/storage/app meuprojeto/public

Windows

mklink /D "meuprojeto/storage/app" "meuprojeto/public"

References

21.09.2017 / 13:37