I'm looking for a solutions where I can do the following in my Sonata backend:
In my database I have the following tables:
- roles
- id
- name
- role
- is_super_admin
- weight
- permissions
- name
- permissions
- description
- role_permission (many to many)
- role_id
- permission_id
So I would like to save relations in my table role_permission. But I'm a bit stuck on how to do this in Sonata admin. Can I do this in the list view? And if yes, can you help me on my way?
