Files
spa-api/app/models/User.php

27 lines
513 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
2014-05-02 09:28:10 -05:00
use Illuminate\Auth\UserTrait;
2013-01-11 15:14:07 -06:00
use Illuminate\Auth\UserInterface;
2014-05-13 08:14:16 -05:00
use Illuminate\Auth\Reminders\RemindableTrait;
2013-02-01 08:30:52 -06:00
use Illuminate\Auth\Reminders\RemindableInterface;
2013-01-11 15:14:07 -06:00
class User extends Eloquent implements UserInterface, RemindableInterface {
2013-01-11 15:14:07 -06:00
2014-05-02 09:28:10 -05:00
use UserTrait, RemindableTrait;
2013-01-11 15:14:07 -06:00
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = array('password');
2014-03-15 10:14:55 +00:00
}