auth.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Authentication Drivers
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here you may define every authentication driver for your application.
  9. | Of course, a default and working configuration is already defined
  10. | here but you are free to define additional drivers when needed.
  11. |
  12. | The "default_guard" option is the default driver which is used while
  13. | utilizing the "Auth" facade within your application. But, you may
  14. | access every other auth driver via the facade's "guard" method.
  15. |
  16. | All authentication drivers have a "provider". A provider defines how
  17. | users are actually retrieved out of the database or other storage
  18. | mechanism used by your application to persist your user's data.
  19. |
  20. | Supported: "session"
  21. |
  22. */
  23. 'default_guard' => 'web',
  24. 'guards' => [
  25. 'web' => [
  26. 'driver' => 'session',
  27. 'provider' => 'eloquent',
  28. ],
  29. // 'api' => [
  30. // ],
  31. ],
  32. /*
  33. |--------------------------------------------------------------------------
  34. | User Providers
  35. |--------------------------------------------------------------------------
  36. |
  37. | All authentication drivers have a "provider". A provider defines how
  38. | users are actually retrieved out of the database or other storage
  39. | mechanisms used by the application to persist your user's data.
  40. |
  41. | Supported: "database", "eloquent"
  42. |
  43. */
  44. 'providers' => [
  45. 'eloquent' => [
  46. 'driver' => 'eloquent',
  47. 'model' => App\User::class,
  48. ],
  49. // 'database' => [
  50. // 'driver' => 'database',
  51. // 'table' => 'users',
  52. // ],
  53. ],
  54. /*
  55. |--------------------------------------------------------------------------
  56. | Password Resets
  57. |--------------------------------------------------------------------------
  58. |
  59. | Here you may set the options for resetting passwords including the view
  60. | that is your password reset e-mail. You can also set the name of the
  61. | table that maintains all of the reset tokens for your application.
  62. |
  63. | Of course, you may define multiple password resetters each with a their
  64. | own storage settings and user providers. However, for most apps this
  65. | default configuration of using Eloquent is perfect out of the box.
  66. |
  67. | The expire time is the number of minutes that the reset token should be
  68. | considered valid. This security feature keeps tokens short-lived so
  69. | they have less time to be guessed. You may change this as needed.
  70. |
  71. */
  72. 'default_resetter' => 'default',
  73. 'resetters' => [
  74. 'default' => [
  75. 'provider' => 'eloquent',
  76. 'email' => 'emails.password',
  77. 'table' => 'password_resets',
  78. 'expire' => 60,
  79. ],
  80. ],
  81. ];