12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- use Illuminate\Auth\UserInterface;
- use Illuminate\Auth\Reminders\RemindableInterface;
- class User extends Eloquent implements UserInterface, RemindableInterface {
-
- protected $table = 'users';
-
- protected $hidden = array('password');
-
- public function getAuthIdentifier()
- {
- return $this->getKey();
- }
-
- public function getAuthPassword()
- {
- return $this->password;
- }
-
- public function getReminderEmail()
- {
- return $this->email;
- }
- }
|