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
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
You can do this directly from the command line.
ls -l -s meuprojeto/storage/app meuprojeto/public
mklink /D "meuprojeto/storage/app" "meuprojeto/public"