mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 06:32:34 +01:00
dbd6e99eee
* remove migration comments * update timestamp by fetch parser * remote empty line
19 lines
275 B
PHP
19 lines
275 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
class User extends Authenticatable {
|
|
|
|
protected $fillable = [
|
|
'username',
|
|
'password',
|
|
];
|
|
|
|
protected $hidden = [
|
|
'password',
|
|
'remember_token',
|
|
];
|
|
}
|