Relation Fields
In this section, we're going to talk about how Framework\Crud can help you handle relation fields.
Filtering by Relation
First, you need to define the relation in your model:
Note that Framework\Crud read available fields from related models, you'll want to edit the `$filterFields` property in the related model. read more about `$filterFields` in [allowed fields](broken-reference) section.
Now you're all set to apply relation filtering! You can find some examples on the filter examples page.
Sorting by Relation
Framework\Crud supports sorting by the following relationship types:
One to One
One to Many
Many to Many
Just like with filtering, you'll need to define the return type of the relations in your model:
Check out the sort examples page for some examples.
Last updated