more fixes

This commit is contained in:
2026-03-12 07:22:38 +01:00
parent 547215cbe8
commit 4f576ceb04
226 changed files with 14380 additions and 4453 deletions

View File

@@ -30,12 +30,22 @@ class UserProfile extends Model
'gender',
'website',
'auto_post_upload',
'email_notifications',
'upload_notifications',
'follower_notifications',
'comment_notifications',
'newsletter',
];
protected $casts = [
'birthdate' => 'date',
'avatar_updated_at'=> 'datetime',
'auto_post_upload' => 'boolean',
'email_notifications' => 'boolean',
'upload_notifications' => 'boolean',
'follower_notifications' => 'boolean',
'comment_notifications' => 'boolean',
'newsletter' => 'boolean',
];
public $timestamps = true;