Reputation: 339
I am using Voyager Laravel admin panel but it stores image in the storage folder. how can i change this to public folder?
Upvotes: 0
Views: 147
Reputation: 1197
The easiest method would be to run php artisan storage:link
which creates a symbolic link to "public/storage".
Upvotes: 1