Following the Nova upgrade guide, you need to update the register
method in your application’s App\Providers\NovaServiceProvider
class to call the parent’s register
method. The parent::register()
method should be invoked before any other code in the method:
public function register(): void
{
parent::register();
}