I deployed my Laravel app with Laravel Nova on Laravel Forge. I installed Nova with a path repository, I have also Nova user. I replaced NovaServiceProvider Gate method like:
Gate::define(‘viewNova’, function ($user) {
return in_array($user->email, [
‘my@license.com’,
]);
});
When I visiting page "/nova" there is login form but when I’m trying to log in with my existing user, it goes on 403 error page with the message “Sorry, you are forbidden from accessing this page”
The only article I found is "Common problems when setting up Laravel Nova" on Medium.
Problem #2: there looks like my issue, but it's not. I think my issue is about the license, otherwise, I tried everything.
I have a solo Nova license and I have not to email support to ask them.
I have: Laravel 5.7
and Nova: 1.3.1
My question is: Should I buy the pro license? and why? Or what's the issue?