How to store custom data in session?
Is there a way to store custom data in session that is not directly related to the core Better Auth logic like storing user preferences without persisting them into the database? Similar to Laravel's
session()->put('foo', 'bar'), if that reference makes it clearer what I'd like to achieve.