Class * specified in twill.dashboard configuration does not exists.
Hi I am suddenly getting this error, after upgrading to Twill 2.9
Class pages specified in twill.dashboard configuration does not exists.
If I remove the config the error goes away, but it must be still needed right?
Thanks
Michael
Running through getEnabledActivities on the debug $moduleClassToCheck is not producing the full namespace on some where as it is on others.
Lookse like I needed to update my app/Providers/AppServiceProvider.php
For the method to work.
Relation::morphMap([
'events' => 'App\Models\Event',
'articles' => 'App\Models\Article',
'pages' => 'App\Models\Page',
'modules' => 'App\Models\Module',
'speakers' => 'App\Models\Speaker',
]);
But getting a blank page front end now. Weird.
Relation::morphMap([
'events' => 'App\Models\Event',
'articles' => 'App\Models\Article',
'pages' => '\App\Models\Page',
'modules' => '\App\Models\Module',
'speakers' => '\App\Models\Speaker',
]);
Change to that and it works - strange.
Hey @michaeljcoyne could this have been a cache issue?
Closing this for now, please reopen if you still have this issue.