Hiz
Uncaught (in promise) TypeError: Cannot read properties of null (reading 'insertBefore')
Thanks! Additionally, just leaving a note here. Livewire 3 ships with Alpine by default. So, remove any Alpine.js imports within your project when upgrading from Filament v2 / Livewire v2 to v3. This was, in my case, the fix.
5 replies
Failed Deployment: Class "Mockery" not found
Hi, We have 3 applications running on different servers. "Testing", "Acceptation" and "Production".
On our testing server we have in our .env file the following:
And I simply renamed "testing" to "test" for APP_ENV
This resolved our issue.
9 replies
Failed Deployment: Class "Mockery" not found
I just encountered this issue. This is a Livewire 3 specific issue. In the
SupportFileUploads.php
file, there is a function that checks if the environment your app is running in is a "testing" environment. If this is the case, it will make use of the Mockery class.
In our case, we had an environment named "testing" and we just changed it to "test" in our .env, and it ran without any problems.9 replies
V3 clickable row at widget
Have you tried this? https://filamentphp.com/docs/3.x/tables/advanced#record-urls-clickable-rows
8 replies
Many-To-Many relation and edit form
You can maybe use a table action on the relation manager which shows a custom form within a modal: https://filamentphp.com/docs/2.x/tables/actions#custom-forms
And perform your logic of associating the selected records
39 replies