Solution: If you are not able to see the image rendered from the image url make sure you have set the correct APP_URL in .env file!

APP_URL=http://localhost

Therefore, if you are testing in development, you should use the port number:

When you executed the php artisan serve command

 INFO  Server running on [http://127.0.0.1:8000].

Change to:

APP_URL=http://127.0.0.1:8000

 

Hope that helps.