Commit 3fa08f90 by Diaa Fares

Fix for displayed Roles at Users grid

1 parent 75cdc8df
Showing with 4 additions and 0 deletions
......@@ -13,6 +13,10 @@ class User extends Model implements AuthenticatableContract, AuthorizableContrac
{
use SoftDeletes, Authenticatable, Authorizable;
protected $casts = [
'owner' => 'boolean',
];
public function account()
{
return $this->belongsTo(Account::class);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!