-
Hi, After upgrading to version 6.3.1 I have started to receive the following error: After checking the github history I found out that the file was deleted in commit: 2248fa2 . I have followed the manual for upgrading as the documentation suggested: https://livewire-powergrid.com/release-notes-and-upgrade/upgrade-guide#upgrade-from-v5. Sadly I couldn't reproduce the issue on a new project with powergrid, so it seems like it's connected to my project. This I tried to solve the issue:
Steps to reproduce I wouldn't know where I could search further. If you got some ideas or debug steps, would be great! Already thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After some research I found out using the following command So it was pretty clear, clear the view with artisan. |
Beta Was this translation helpful? Give feedback.
After some research I found out using the following command
grep -r "RulesController" .
. I found out that the file is located in./storage/framework/views/7b5c7ed24bddb8e10a1cdccc4b53689f.php:<?php $actionRulesClass = app('PowerComponents\LivewirePowerGrid\Components\Rules\RulesController'); ?>
. Which means it was in the compiled view.So it was pretty clear, clear the view with artisan.
php artisan view:clear
fixed it for me!