v3.0.65
What's Changed
Custom User Model:
By default Bolt will use this model to get the user info:
config('auth.providers.users.model')
if you need to change this to use another model, add the following in your config file: zeus-bolt.php
:
'models' => [
//...
'User' => AnotherUserModel::class,
],
Full Changelog: v3.0.64...v3.0.65