The problem isconfig/filesystems.php
'default' => env('FILESYSTEM_DISK', 'public'),
But in the .env file
FILESYSTEM_DISK=local
This configuration will save your images in Storage/app
instead of storage/app/public
.
Images saved in storage/app
are not publicly accessible.
So you have to change the .env file