auth.php 890 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Authentication Model
  6. |--------------------------------------------------------------------------
  7. |
  8. | This model will be used by the Auth class when retrieving the users of
  9. | your application. Feel free to change it to the name of your user model.
  10. |
  11. | Note: The authentication model must be an Eloquent model.
  12. |
  13. */
  14. 'model' => 'User',
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Authentication Username
  18. |--------------------------------------------------------------------------
  19. |
  20. | The authentication username is the column on your users table that
  21. | is considered the username of the user. Typically, this is either "email"
  22. | or "username". However, you are free to make it whatever you wish.
  23. |
  24. */
  25. 'username' => 'email',
  26. );