auth.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Retrieve Users By ID
  6. |--------------------------------------------------------------------------
  7. |
  8. | This method is called by the Auth::user() method when attempting to
  9. | retrieve a user by their user ID, such as when retrieving a user by the
  10. | user ID stored in the session.
  11. |
  12. | You are free to change this method for your application however you wish.
  13. |
  14. */
  15. 'by_id' => function($id)
  16. {
  17. return User::find($id);
  18. },
  19. /*
  20. |--------------------------------------------------------------------------
  21. | Retrieve Users By Username
  22. |--------------------------------------------------------------------------
  23. |
  24. | This method is called by the Auth::check() method when attempting to
  25. | retrieve a user by their username, such as when checking credentials
  26. | received from a login form.
  27. |
  28. | You are free to change this method for your application however you wish.
  29. |
  30. | Note: This method must return an object that has "id" and "password"
  31. | properties. The type of object returned does not matter.
  32. |
  33. */
  34. 'by_username' => function($username)
  35. {
  36. return User::where_email($username)->first();
  37. },
  38. );