mehr übersetzungen, added pending purchase indicator. datenschutzfenster funktioniert.

This commit is contained in:
Codex Agent
2025-10-03 15:31:54 +02:00
parent 60f8de9162
commit c87cfb2c10
17 changed files with 410 additions and 52 deletions

View File

@@ -31,6 +31,7 @@ class User extends Authenticatable implements MustVerifyEmail
'address',
'phone',
'role',
'pending_purchase',
];
/**
@@ -53,6 +54,7 @@ class User extends Authenticatable implements MustVerifyEmail
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
'pending_purchase' => 'boolean',
];
}