I'm developing a RESTful API with Laravel 4 in which I want to upload pictures related to users (profile pics or galleries). I want to keep it as REST orthodox as I can. How should I treat the pictures? as a separate resource (relation)? And what would be the best way to map them in my URLs and actions?
Thanks!!