Skip to main content
You are currently viewing the documentation for Filament 2.x, which is a previous version of Filament.Looking for the current stable version? Visit the 5.x documentation.

Getting started

“Relation managers” in Filament allow administrators to list, create, attach, associate, edit, detach, dissociate and delete related records without leaving the resource’s Edit page. Resource classes contain a static getRelations() method that is used to register relation managers for your resource. To create a relation manager, you can use the make:filament-relation-manager command:
  • CategoryResource is the name of the resource class for the parent model.
  • posts is the name of the relationship you want to manage.
  • title is the name of the attribute that will be used to identify posts.
This will create a CategoryResource/RelationManagers/PostsRelationManager.php file. This contains a class where you are able to define a form and table for your relation manager:
You must register the new relation manager in your resource’s getRelations() method:
For relationships with unconventional naming conventions, you may wish to include the $inverseRelationship property on the relation manager:
Once a table and form have been defined for the relation manager, visit the Edit or View page of your resource to see it in action.

Handling soft deletes

By default, you will not be able to interact with deleted records in the relation manager. If you’d like to add functionality to restore, force delete and filter trashed records in your relation manager, use the --soft-deletes flag when generating the relation manager:
You can find out more about soft deleting here.

Listing records

Related records will be listed in a table. The entire relation manager is based around this table, which contains actions to create, edit, attach / detach, associate / dissociate, and delete records. As per the documentation on listing records, you may use all the same utilities for customization on the relation manager: Additionally, you may use any other feature of the table builder.

Listing with pivot attributes

For BelongsToMany and MorphToMany relationships, you may also add pivot table attributes. For example, if you have a TeamsRelationManager for your UserResource, and you want to add the role pivot attribute to the table, you can use:
Please ensure that any pivot attributes are listed in the withPivot() method of the relationship and inverse relationship.

Creating records

Creating with pivot attributes

For BelongsToMany and MorphToMany relationships, you may also add pivot table attributes. For example, if you have a TeamsRelationManager for your UserResource, and you want to add the role pivot attribute to the create form, you can use:
Please ensure that any pivot attributes are listed in the withPivot() method of the relationship and inverse relationship.

Customizing data before saving

Sometimes, you may wish to modify form data before it is finally saved to the database. To do this, you may use the mutateFormDataUsing() method, which accepts the $data as an array, and returns the modified version:

Customizing the creation process

You can tweak how the record is created using the using() method:

Customizing the save notification

When the record is successfully created, a notification is dispatched to the user, which indicates the success of their action. To customize the text content of this notification:
And to disable the notification altogether:

Lifecycle hooks

Hooks may be used to execute code at various points within an action’s lifecycle.

Halting the creation process

At any time, you may call $action->halt() from inside a lifecycle hook or mutation method, which will halt the entire creation process:
If you’d like the action modal to close too, you can completely cancel() the action instead of halting it:

Editing records

Editing with pivot attributes

For BelongsToMany and MorphToMany relationships, you may also edit pivot table attributes. For example, if you have a TeamsRelationManager for your UserResource, and you want to add the role pivot attribute to the edit form, you can use:
Please ensure that any pivot attributes are listed in the withPivot() method of the relationship and inverse relationship.

Customizing data before filling the form

You may wish to modify the data from a record before it is filled into the form. To do this, you may use the mutateRecordDataUsing() method to modify the $data array, and return the modified version before it is filled into the form:

Customizing data before saving

Sometimes, you may wish to modify form data before it is finally saved to the database. To do this, you may define a mutateFormDataUsing() method, which accepts the $data as an array, and returns it modified:

Customizing the saving process

You can tweak how the record is updated using the using() method:

Customizing the save notification

When the record is successfully updated, a notification is dispatched to the user, which indicates the success of their action. To customize the text content of this notification:
And to disable the notification altogether:

Lifecycle hooks

Hooks may be used to execute code at various points within an action’s lifecycle.

Halting the saving process

At any time, you may call $action->halt() from inside a lifecycle hook or mutation method, which will halt the entire saving process:
If you’d like the action modal to close too, you can completely cancel() the action instead of halting it:

Attaching and detaching records

Filament is able to attach and detach records for BelongsToMany and MorphToMany relationships. When generating your relation manager, you may pass the --attach flag to also add AttachAction, DetachAction and DetachBulkAction to the table:
Alternatively, if you’ve already generated your resource, you can just add the actions to the $table arrays:

Preloading the attachment modal select options

By default, as you search for a record to attach, options will load from the database via AJAX. If you wish to preload these options when the form is first loaded instead, you can use the preloadRecordSelect() method of AttachAction:

Attaching with pivot attributes

When you attach record with the Attach button, you may wish to define a custom form to add pivot attributes to the relationship:
In this example, $action->getRecordSelect() outputs the select field to pick the record to attach. The role text input is then saved to the pivot table’s role column. Please ensure that any pivot attributes are listed in the withPivot() method of the relationship and inverse relationship.

Scoping the options

You may want to scope the options available to AttachAction:

Handling duplicates

By default, you will not be allowed to attach a record more than once. This is because you must also set up a primary id column on the pivot table for this feature to work. Please ensure that the id attribute is listed in the withPivot() method of the relationship and inverse relationship. Finally, add the $allowsDuplicates property to the relation manager:

Associating and dissociating records

Filament is able to associate and dissociate records for HasMany and MorphMany relationships. When generating your relation manager, you may pass the --associate flag to also add AssociateAction, DissociateAction and DissociateBulkAction to the table:
Alternatively, if you’ve already generated your resource, you can just add the actions to the $table arrays:

Preloading the associate modal select options

By default, as you search for a record to associate, options will load from the database via AJAX. If you wish to preload these options when the form is first loaded instead, you can use the preloadRecordSelect() method of AssociateAction:

Scoping the options

You may want to scope the options available to AssociateAction:

Viewing records

When generating your relation manager, you may pass the --view flag to also add a ViewAction to the table:
Alternatively, if you’ve already generated your relation manager, you can just add the ViewAction to the $table->actions() array:

Deleting records

By default, you will not be able to interact with deleted records in the relation manager. If you’d like to add functionality to restore, force delete and filter trashed records in your relation manager, use the --soft-deletes flag when generating the relation manager:
Alternatively, you may add soft deleting functionality to an existing relation manager:

Lifecycle hooks

You can use the before() and after() methods to execute code before and after a record is deleted:

Halting the deletion process

At any time, you may call $action->halt() from inside a lifecycle hook or mutation method, which will halt the entire deletion process:
If you’d like the action modal to close too, you can completely cancel() the action instead of halting it:

Accessing the owner record

Relation managers are Livewire components. When they are first loaded, the owner record (the Eloquent record which serves as a parent - the main resource model) is mounted in a public $ownerRecord property. Thus, you may access the owner record using:
However, in you’re inside a static method like form() or table(), $this isn’t accessible. So, you may use a callback to access the $livewire instance:
All methods in Filament accept a callback which you can access $livewire->ownerRecord in.

Grouping relation managers

You may choose to group relation managers together into one tab. To do this, you may wrap multiple managers in a RelationGroup object, with a label:

Conditional visibility

By default, relation managers will be visible if the viewAny() method for the related model policy returns true. You may use the canViewForRecord() method to determine if the relation manager should be visible for a specific owner record:

Moving the resource form to tabs

On the Edit or View page class, override the hasCombinedRelationManagerTabsWithForm() method: