“调用未定义的方法Intervention \ Image \ Image :: make()”

时间:2019-02-21 14:45:12

标签: php laravel

当我在本地主机中使用Laravel Intervention映像时,它工作正常,但是当在控制面板中上载实时服务器时,它却无法工作...

enter image description here

1 个答案:

答案 0 :(得分:1)

在config / app.php

在$ providers数组中,添加此程序包的服务提供商。

Intervention\Image\ImageServiceProvider::class

将此包的外观添加到$ aliases数组中。

'Image' => Intervention\Image\Facades\Image::class

根据此链接http://image.intervention.io/getting_started/installation

或在安装后在控制器顶部添加:-

use Intervention\Image\ImageManagerStatic as Image;