*/ use HasFactory, HasUuids; protected $fillable = [ 'user_id', 'chart_color_scheme', 'include_loans_in_net_worth_chart', 'include_real_estate_in_net_worth_chart', 'notify_on_bank_transactions_synced', ]; protected function casts(): array { return [ 'chart_color_scheme' => ChartColorScheme::class, 'include_loans_in_net_worth_chart' => 'boolean', 'include_real_estate_in_net_worth_chart' => 'boolean', 'notify_on_bank_transactions_synced' => 'boolean', ]; } public function user(): BelongsTo { return $this->belongsTo(User::class); } }