Laravel Spark 不显示存储在 /storage/app/public/profiles/ 目录中的图像

Laravel Spark is not displaying images that are stored in the /storage/app/public/profiles/ directory

上传图片的默认设置似乎是 /storage/app/public/profiles/,但前端生成的 URL of /storage/profiles/image 不是被发现。

我试图为该目录找到任何类型的路由,但未能找到。任何帮助将不胜感激。

您必须link到存储目录。来自 documentation:

Once Spark is installed, you should link the public/storage directory to your storage/app/public directory. Otherwise, user profile photos stored on the local disk will not be available

以及相关代码:

ln -s /path/to/storage/app/public /path/to/public/storage

只需删除 public 文件夹中的存储文件夹和 运行 使用绝对路径(从根文件夹)的命令。