1
Currently there is the PHP Artisan Storage:link command 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
1
Currently there is the PHP Artisan Storage:link command 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
1
You can do directly per command line.
ls -l -s meuprojeto/storage/app meuprojeto/public
mklink /D "meuprojeto/storage/app" "meuprojeto/public"
Browser other questions tagged php laravel laravel-5
You are not signed in. Login or sign up in order to post.
That’s what I needed. Thanks man :)
– Matheus Lima