Kymset
Relationship manager - Issues when using a union relation
I think I have found a solution but not sure if it is a good one.
If anyone (especially filament team) could say whether it is the best solution please let me know.
Within my relationship manager I have had to override this function:
This means that I cannot have sortable on any of my columns.
I assume there is a better way which would be to override the applySortingToTableQuery so the order gets applied correctly
6 replies
Maximum execution time of 30 seconds exceeded
Maybe worth looking at your setup.
Could be something to do with docker / valet / laragon / other
Could be something in your mysql setup causing that to take longer.
Honestly a whole lot could be the source of the problem 🙄
16 replies
Creating a user when a client is created.
For this o would probably use an observer:
https://laravel.com/docs/11.x/eloquent#defining-observers
Using this you can create a listener on your model so anytime a record is created you can run some code to send notifications ect.
4 replies
Hide submit button on wizard
I am assuming from your screenshot this is a modal.
Here in the docs it shows how to remove modal submit:
https://filamentphp.com/docs/3.x/actions/modals#removing-a-default-modal-footer-action-button
Hope that helps 🙂
6 replies
Maximum execution time of 30 seconds exceeded
It looks like you are getting this error on the list page of a resource.
Are you able to see individual records without getting this error?
If you are able to share the code / screenshot of the page you are trying to access people can help more
The solution to this maybe to go into your php.ini file and increase the execution time
16 replies
Trouble trying to summarize
Not sure I can help much as I haven't delved into summaries yet.
This may not be the right solution but have a look at custom summaries:
https://filamentphp.com/docs/3.x/tables/summaries#custom-summaries
Using this you maybe able to make your own query:
Hope it helps
4 replies