This commit is contained in:
Taylor Otwell
2014-08-18 23:43:10 -05:00
parent 3ffbb5d6ba
commit 80a60552d7
18 changed files with 0 additions and 0 deletions

27
app/Core/User.php Normal file
View File

@@ -0,0 +1,27 @@
<?php namespace App;
use Eloquent;
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableTrait;
use Illuminate\Auth\Reminders\RemindableInterface;
class User extends Eloquent implements UserInterface, RemindableInterface {
use UserTrait, RemindableTrait;
/**
* 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 = ['password', 'remember_token'];
}