You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
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);