1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-06-11 02:41:07 +00:00
Files
assets
client
public
server
site
client
public
server
app
Console
Events
Exceptions
Http
Jobs
Listeners
Providers
User.php
bootstrap
config
database
storage
tests
.env.example
artisan
composer.json
composer.lock
phpspec.yml
phpunit.xml
server.php
test
.gitignore
gulpfile.js
package.json
not-gwent-online/site/server/app/User.php
2015-06-19 18:50:05 +02:00

36 lines
858 B
PHP
Executable File

<?php
namespace Gwent;
use Illuminate\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
class User extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'users';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['name', 'email', 'password'];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $hidden = ['password', 'remember_token'];
}