1

我正在使用 Laravel 安可管理库。

在用户数据库中,我的图像字符串存储为“/imageName.ext”

在控制器的$show中,我将图像显示为:

$show->field('image', __('Image'))->image('localhost/storage/images');

文档告诉 image() 方法接受三个参数$server, $width, $length。但是尽管在 image() 中给出了服务器地址,但我得到的服务器地址为:

http://localhost:8000/storage/imageName.ext

应该是:

http://localhost:8000/storage/images/imageName.ext

4

0 回答 0