]> git.localhorst.tv Git - alttp.git/blobdiff - app/Models/User.php
basic result display
[alttp.git] / app / Models / User.php
index dd129821890d28e9736b81bd6aaa800f35d15333..7f03b4acdf6a24ea4dc2bcec5145cb66a2b31ea9 100644 (file)
@@ -12,6 +12,15 @@ class User extends Authenticatable
 {
        use HasApiTokens, HasFactory, Notifiable;
 
+       public function isParticipant(Tournament $tournament) {
+               foreach ($tournament->participants as $participant) {
+                       if ($participant->user->id == $this->id) {
+                               return true;
+                       }
+               }
+               return false;
+       }
+
        /**
         * The attributes that are mass assignable.
         *
@@ -36,6 +45,8 @@ class User extends Authenticatable
         * @var array
         */
        protected $hidden = [
+               'email',
+               'mfa_enabled',
                'refresh_token',
                'remember_token',
        ];