0

我添加flysystem到 Lumen 以便我可以使用StorageFacade。

我添加了正确的config文件,然后我正在尝试:

$template = Storage::get(storage_path('a.html'));

配置:

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

我越来越:

FileNotFoundException /var/www/storage/a.html

该文件存在于该位置。

有什么线索吗?

4

1 回答 1

1

试试Storage::get(“a.html”)

于 2018-09-14T12:00:53.320 回答