zoukankan      html  css  js  c++  java
  • 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/', // 路径访问设置
    ]


  • 相关阅读:
    装饰者模式
    代理模式
    享元模式
    模板模式
    命令模式
    建造者模式
    单例模式
    观察者模式
    迭代器模式
    访问者模式
  • 原文地址:https://www.cnblogs.com/victorcode/p/11506100.html
Copyright © 2011-2022 走看看