'string', ]; public function clients(): BelongsToMany { return $this->belongsToMany(Client::class, 'admin_client') ->withTimestamp('assigned_at'); } public function isSuperAdmin(): bool { return $this->role === 'super'; } }