mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 06:32:34 +01:00
17 lines
263 B
PHP
17 lines
263 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',
|
|
];
|
|
}
|