-
We just upgraded to the latest Laravel 8.18.1 version and also updated many composer packages including Laravel Honeypot (3.0.1). Now we however get the error
and yes, the View Composer file is not there under |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Did you already try clearing the view cache? |
Beta Was this translation helpful? Give feedback.
-
Did do a |
Beta Was this translation helpful? Give feedback.
-
We needed to adjust the path in one controller - \View::composer("{$domainView}::index", \Spatie\Honeypot\HoneypotViewComposer::class);
+ \View::composer("{$domainView}::index", \Spatie\Honeypot\View\HoneypotViewComposer::class); Now all good. Thanks for your feedback @freekmurze . |
Beta Was this translation helpful? Give feedback.
We needed to adjust the path in one controller
Now all good. Thanks for your feedback @freekmurze .