我添加flysystem
到 Lumen 以便我可以使用Storage
Facade。
我添加了正确的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
该文件存在于该位置。
有什么线索吗?