Abi
Explore posts from serversComponent not found after Standalone Form Submission
I create a Standalone Filament Form inside a Livewire Component. I am only able to submit the form for the first time, the next time I click the submit button, I get a javascript error
livewire.esm.js:8341 Uncaught Component not found: CmxiE7XWv7BNlojJe6Z5
. Has someone faced a similar issue? What could be causing it?22 replies
Modify query for Select Element on form with relationship based on another form element
I have 2
Select
components on the form. Item Category
and Vendor
. both these fields have belongsToMany
relationship with a pivot table category_vendor
that stores vendors for each category or categories for a vendor. When a user selects a category, I want to display a list of vendors for that category and I am trying to use the modifyQueryUsing
parameter for the relationship
method on the vendor
field. How do I pass the selected category to the vendor
fields query parameter?
2 replies
Move Modal's Create Action to Wizard Submit Action
I have a resource that uses the Modal to create, the resource's form uses a Wizard and I want to move the
Create
Action of the Modal inside the Wizard as the Submit
Action for the last step of the Wizard. How do I do this?9 replies
Multi Tenancy associate Tenant to Resource
I have created a model that has a
team_id
column and also a team()
relation to the Team
model. The Team
model has been setup as the tenant
model on the Provider.
Do I need to do anything else in each resource to associate the tenant id for the CRUD operations?
I get this error when I create a new record on a resource inside the Multi Tenancy Panel
Any advice?6 replies
Setting the default page for Multi-Tenancy
After a user registers and creates a tenant, the user is automatically redirected to
/{panel-path}/{id}
, but I get a 404 | Not Found
error. How do I set what the default page should be loaded after a user logs in?1 replies
Is there a method to disable `iconButton` on an Action
One of the filament packages set's up by default as an IconButton on the
setUp
method of its Action class. I want to disable it. I am trying to add this action to an Action group but not able to disable it rendering as an iconButton
on the ActionGroup.4 replies
Adding close button when customizing modalFooterActions
On the Table action, when we need to add multiple Action buttons, we use the
modalFooterActions()
method to add more actions. Is there a way to add an action called "Close" that can close the modal just list the default footer actions?2 replies