auth.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.
  10. |
  11. | You are free to change this method for your application however you wish.
  12. |
  13. */
  14. 'by_id' => function($id)
  15. {
  16. return User::find($id);
  17. },
  18. /*
  19. |--------------------------------------------------------------------------
  20. | Retrieve Users By Username
  21. |--------------------------------------------------------------------------
  22. |
  23. | This method is called by the Auth::check() method when attempting to
  24. | retrieve a user by their username.
  25. |
  26. | You are free to change this method for your application however you wish.
  27. |
  28. | Note: This method must return an object that has an "id" and a "password"
  29. | property. The type of object returned doesn't matter.
  30. |
  31. */
  32. 'by_username' => function($username)
  33. {
  34. return User::where('email', '=', $username)->first();
  35. },
  36. );