Advertisement
Guest User

Untitled

a guest
Aug 24th, 2014
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. use Illuminate\Auth\UserTrait;
  4. use Illuminate\Auth\UserInterface;
  5. use Illuminate\Auth\Reminders\RemindableTrait;
  6. use Illuminate\Auth\Reminders\RemindableInterface;
  7.  
  8. class User extends Eloquent implements UserInterface, RemindableInterface {
  9.  
  10.     use UserTrait, RemindableTrait;
  11.  
  12.     /**
  13.      * The database table used by the model.
  14.      *
  15.      * @var string
  16.      */
  17.     protected $table = 'users';
  18.  
  19.     /**
  20.      * The attributes excluded from the model's JSON form.
  21.      *
  22.      * @var array
  23.      */
  24.     protected $hidden = array('password', 'remember_token');
  25.  
  26. }
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement