AM DEV
AM DEV

Reputation: 339

How can I change the folder where images are stored, from storage to public?

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

Answers (1)

Eric
Eric

Reputation: 1197

The easiest method would be to run php artisan storage:link which creates a symbolic link to "public/storage".

Upvotes: 1

Related Questions