Hi,
I have two differents crud :
- OrganizationResource::crud('/organization'))
- OrganizationMemberResource::crud('/organization/member'))
I would like to know what is the best way to do :
- /organization/{id}/member/ in order to get all the member in one Organization.
What I've done so far was coding it manually. Is there a way to do it without having to code it manually ?
Thanks,