I've already figured out how to make a simple resource reachable by AbstractRestfulController
. Example:
localhost/products
-> list
localhost/products/1
-> special product
Is there a way to nest resources? If so, how would you do that? Example:
localhost/products/1/photos
-> list all photos of a product
localhost/products/1/photos/3124
-> show special photo of a product
(I have in this presentation as goal mind)
Thanks for your help!