您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ConfigServiceProvider.php 502B

1234567891011121314151617181920212223
  1. <?php namespace App\Providers;
  2. use Illuminate\Support\ServiceProvider;
  3. class ConfigServiceProvider extends ServiceProvider {
  4. /**
  5. * Overwrite any vendor / package configuration.
  6. *
  7. * This service provider is intended to provide a convenient location for you
  8. * to overwrite any "vendor" or package configuration that you may want to
  9. * modify before the application handles the incoming request / command.
  10. *
  11. * @return void
  12. */
  13. public function register()
  14. {
  15. config([
  16. //
  17. ]);
  18. }
  19. }