How can I use [ngRoute] and [ngResource] at the same time.
Not sure if I am right but I've got my code looking something like this
var app = angular.module("myApp", ["ngRoute"],["ngResources"]);
But this doesn't work
Originally it is something like this
var app = angular.module("myApp", ["ngRoute"]);
I want to add ngResource to add the API restful post on my site.
Any help or suggestions please. Thank