使用一个功能系统,使用了Laravel -admin,在系统加载时,调用了Laravel Debugbar 功能。
在配置文件 config/debugbar.php 中设置 enabled 为 false 即可,默认为null。

  1. 'storage' => array(
  2. 'enabled' => false, //这个设置为false就可以啦
  3. 'driver' => 'file', // redis, file, pdo
  4. 'path' => storage_path() . '/debugbar', // For file driver
  5. 'connection' => null, // Leave null for default connection (Redis/PDO)
  6. ),

分类: web

标签:   laravel