3

我创建了一个需要上传图像的应用程序。

我使用http://laravel-admin.org/

已经设置好并遵循文档。一切正常,但我的图片无法通过 url 访问

它说404 - Not Found

在此处输入图像描述

通过 url 访问时。

在此处输入图像描述

检查资源管理器它已经在那里。

在此处输入图像描述

我在这里config/filesystems.php

....
'disks' => [

    'local' => [
        'driver' => 'local',
        'root' => storage_path('app'),
    ],

    'public' => [
        'driver' => 'local',
        'root' => storage_path('app/public'),
        'url' => env('APP_URL').'/storage',
        'visibility' => 'public',
    ],

    'admin' => [
      'driver' => 'local',
      'root' => storage_path('app/public'),
      'visibility' => 'public',
      'url' => env('APP_URL').'/storage',
    ],
....

我在这里config/admin.php

....
'upload' => [
    'disk' => 'admin',
    'directory' => [
        'image' => 'images',
        'file'  => 'files',
    ],
    'host' => 'http://localhost:8000/upload/',
],
....

任何人都可以提供帮助和解释,卡住了大约 3 个小时 :')

4

1 回答 1

1

参考您的资源管理器屏幕,因此图像存储在public disk/images

最简单的方法是通过Storage::disk('public')->url('images/'. $image);

如果你想创建另一个磁盘,我可以发布更多代码

你也可以使用访问器,在你的模型中添加这个

public function getShowImageAttribute()
{
    return \Storage::disk('public')->url('images/'. $this->attributes['image_column_name_here']);
}

所以你可以像这样在刀片中访问它

{{ $user->show_image }}
于 2018-09-04T09:54:38.207 回答