Вы не можете выбрать более 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. }