Login fix

This commit is contained in:
2021-03-12 11:10:14 +01:00
parent a31ed44bdd
commit c6e002d464
12 changed files with 43 additions and 35 deletions
+2 -4
View File
@@ -5,11 +5,9 @@ use Illuminate\Database\Eloquent\Model as Eloquent;
class AdminUser extends Eloquent
{
protected $fillable = [
'user_name'
'user_name', 'password'
];
protected $hidden =[
'password'
];
}