Why is there a need to define a new method in RESTful controller, follow it up with a create method?
Google search didn\'t provide me the answer I was looking for. I
New instantiates a new Model instance, but it is not saved until the save method is called.
Create does the same as new, but also saves it to the database.
Sometimes you want to do stuff before saving something to the database, sometimes you just want to create and save it straight away.