email === 'nurmuhammet@mail.com'; } /** * Check if user is super admin. */ public function isSuperAdmin(): bool { if ($this->isMe()) { return true; } return $this->hasRole('superadmin'); } /** * Check if user is admin. */ public function isAdmin(): bool { if ($this->isMe()) { return true; } return $this->hasRole(['king', 'superadmin', 'admin']); } /** * Check if user is operator. */ public function isOperator(): bool { return $this->hasRole(['operator', 'operator_card', 'operator_loan']); } /** * Check if user is a currency maintainer. */ public function isCurrencyMaintainer(): bool { return $this->hasRole('currency_maintainer'); } /** * Is System User */ public function isSystemUser(): bool { return $this->isAdmin() || $this->isOperator() || $this->isCurrencyMaintainer(); } }