Skip to content

Commit

Permalink
Supply initial CSV values
Browse files Browse the repository at this point in the history
  • Loading branch information
MGatner committed Jan 24, 2022
1 parent 803c783 commit 14c64c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Entities/User.php
Expand Up @@ -14,7 +14,9 @@ class User extends Entity implements HasGroup, HasPermission
'deleted_at',
];
protected $attributes = [
'id' => null,
'id' => null,
'groups' => '',
'permissions' => '',
];
protected $casts = [
'groups' => 'csv',
Expand Down

0 comments on commit 14c64c6

Please sign in to comment.