Explorar el Código

Update User, fix last_active_at guard

Daniel Supernault hace 2 años
padre
commit
0b90d629d5
Se han modificado 1 ficheros con 8 adiciones y 1 borrados
  1. 8 1
      app/User.php

+ 8 - 1
app/User.php

@@ -31,7 +31,14 @@ class User extends Authenticatable
      * @var array
      */
     protected $fillable = [
-        'name', 'username', 'email', 'password', 'app_register_ip', 'email_verified_at', 'register_source'
+        'name',
+        'username',
+        'email',
+        'password',
+        'app_register_ip',
+        'email_verified_at',
+        'last_active_at',
+        'register_source'
     ];
 
     /**