laravel-admin报错: Driver [] is not supported.


1.查看config下的admin.php 

1)将disk修改为admin,不是则需要改成admin,或者没有的情况下需要添加.
'upload' => [
// Disk in `config/filesystem.php`.
'disk' => 'admin',

// Image and file upload path under the disk above.
'directory' => [
'image' => 'images',
'file' => 'files',
],
]

2)编辑config下的filesystems.php:
在disks下增加:
'admin' => [
'driver' => 'local',
'root' => public_path('upload'), // 图片上传本地的路径
'visibility' => 'public',
'url' => env('APP_URL').'/public/upload/', // 路径访问设置
]



免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM