Abi
Explore posts from serversNo action on Submit on the last step of Wizard Step
I am using the
HasWizard
trait on the CreateRecord
of a resource and after completing all the validations and entering all the fields of form on the Wizard Steps, the Submit button does nothing. No network calls as well. Do I need to do anything specific to create the record on the resource?18 replies
Hook to execute some code after Create or Update on the Form without the Model Observer
I have 2 admin panels and both a panels use the same model. I need to execute a set of code after the record is created or updated. If I use an observer, it applies to both the admin panels and I don't want that. How do I go about implementing this? Is there some sort of a hook like
afterSave
like with Actions (https://filamentphp.com/docs/3.x/actions/prebuilt-actions/create#lifecycle-hooks) for Forms to help achieve that?1 replies
Component 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