在根目录/配置上包含Auth类

时间:2019-06-11 09:19:03

标签: php laravel authentication laravel-5 laravel-5.8

我没有问题地安装了以下软件包ckfinder https://github.com/ckfinder/ckfinder-laravel-package

现在,我需要让每个用户通过其ID访问自己的文件夹,因此当我去编辑找到的Auth::users()->id文件时,我想我应该使用ckfinder.php函数。在root/config/ckconfig.php目录中,然后插入

Use Auth;

use Illuminate\Support\Facades\Auth;

我遇到以下错误:

Mistake:
RuntimeException
A facade root has not been set.

这是代码

Config / Ckfinder.php

use Illuminate\Support\Facades\Auth;

$config['backends']['default'] = array(
    'name'         => 'default',
    'adapter'      => 'local',
    'baseUrl'      => env('APP_URL').'/userfiles/files/'. Auth::user()->id,
    'root'         => public_path('/userfiles/files/'. Auth::user()->id),
    'chmodFiles'   => 0777,
    'chmodFolders' => 0755,
    'filesystemEncoding' => 'UTF-8'
);

你能帮我吗?

0 个答案:

没有答案