- Support for themes
Release date: 2023-05-02
- The getAuthenticator method can be called without name parameter, in this case the default name
auth
will be used. - Added parameter with the list of all authentication classes used by insideauth (can be used to pass them to addPersistentMiddleware of livewire component)
Release date: 2023-04-25
- Added
homepage
parameter. The user will be redirect here after logout or delete account. - Fixed some missing return types.
- The boot method can be called without name parameter, in this case the default name
auth
will be used. - Added testing using pestphp.
Release date: 2023-04-02
Added enabled function, to enable / disable programmatically the entire auth routes collection
Release date: 2023-04-02
Changed main middlware name
Release date: 2023-04-02
Added insideauth_booted function
Release date: 2023-04-02
Fixed UserDelete event not being fired.
Release date: 2023-04-02
Fixed the route of the profile destroy action.
Release date: 2023-04-02
Simplified route prefixing.
Release date: 2023-04-02
Added parameters to all without* methods to allow for more flexibility.
For example, you can now do:
/**
* Gather a configuration value from your application that determines
* whether or not registration is disabled.
*/
$disableRegistration = config('myapp.disable_registration');
/**
* Pass the configuration value to the withoutRegistration method.
*/
insideauth()->withoutRegistration($disableRegistration);