sudosu.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Allowed TLDs - Use with caution!
  6. |--------------------------------------------------------------------------
  7. |
  8. | This is to prevent mis-usage during production if debug mode is
  9. | unintentionally left active. The package will detect the site
  10. | URL and if the TLD isn't present in this array, it will not
  11. | activate. If your development TLD is different to .dev or
  12. | .local, simply add it to the arrow below.
  13. |
  14. */
  15. 'allowed_tlds' => ['dev', 'local', 'test'],
  16. /*
  17. |--------------------------------------------------------------------------
  18. | User Model
  19. |--------------------------------------------------------------------------
  20. |
  21. | Path to the application User model. This will be used to retrieve the users
  22. | displayed in the select dropdown. This must be an Eloquent Model instance.
  23. |
  24. */
  25. // 用户模型
  26. 'user_model' => App\Models\User::class
  27. ];