Skip to content

v3.0.65

Compare
Choose a tag to compare
@atmonshi atmonshi released this 01 Sep 17:39
· 19 commits to 3.x since this release
2309d6c

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