FreddCha
FreddCha

Reputation: 595

Laravel Filemanager Base url for Images is wrong

I need help configuring the site url being generated by Laravel File manager. I am developing my application locally on http://127.0.0.1:8000/. The name of the application is security. But whenever I upload images, its giving them a url of: http://security.test/storage/photos/1/logo-small.jpeg

How can I change this incorrect url to: http://127.0.0.1:8000/storage/photos/1/logo-small.jpeg

Upvotes: 0

Views: 775

Answers (1)

Abdullah Shakir
Abdullah Shakir

Reputation: 223

Make the following change in .env file:

APP_URL=http://127.0.0.1:8000

After making change in .env file remember to execute the following command:

php artisan config:cache

Upvotes: 0

Related Questions