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
Essentially, in the production environment, I encounter the 403 page even before logging in (it does not even show login page). Here's how the gate function in the NovaServiceProvider is defined:
protected function gate()
{
Gate::define('viewNova', function ($user) {
return true;
});
}
The text was updated successfully, but these errors were encountered:
Unable to reproduce the issue, please provide full reproducing repository based on fresh installation as suggested in the bug report template (or you can refer to https://github.com/nova-issues for example)
@crynobone Unfortunately, I can’t share the repository. I understand this is likely something specific to my project, but I haven’t found any other resources to check apart from the gate section in the Nova documentation. Do you have any suggestions on where else I could look?
Essentially, in the production environment, I encounter the 403 page even before logging in (it does not even show login page). Here's how the gate function in the NovaServiceProvider is defined:
The text was updated successfully, but these errors were encountered: