Well, either one will be fine. I'm a fan of Angular... but like I said, they're both fine.
Which one of them communicates better with Laravel?
They will both communicate in roughly the same fashion, they both handle REST quite well and have default HTTP/AJAX implementations.
Which one's code base is easier to maintain?
The code base is as easy to maintain as you write it to be. That said, Angular forces you into it's own modular application structure which might make it a little easier to deal with from a "Where is this code at?" standpoint. Backbone is a little more free-form and you can set it up however you choose... so there's a give and take.
Which has better performance?
At what? AJAX or REST? They're probably about the same. Angular does a lot more than Backbone... Angular is a templating engine, a two-way binding MVVM/MVC/MVW architecture, reusable controls, content filtering and formatting, etc. Angular is more of a whole framework, where Backbone is just a library. That said, the way that Angular handles two-way binding will be slightly less performant than say, Knockout; That's because Angular triggers a digest that processes everthing that's being "watched" whereas Knockout uses an observer pattern. All in all, on a client app, this doesn't really hurt performance much though.
Pros and cons based on experience?
Angular
pros: Very little boilerplate. It's a complete framework, it has routing, controls, templating, two-way binding, it handles REST and AJAX, currency formatting, date formatting, you name it. Development is a lot more rapid. It works extremely well with JQuery plugins. Directives and modules and code re-usability is very slick. It forces your developers into a certain structure, so you know where to look for things.
cons: It forces your developers into a certain structure, so you know where to look for things. The learning curve is a little steeper. Memory management can become an issue if you try to go "too big" with your interfaces.
Backbone:
pros: You can develop your UI any way you want to. It's smaller and well documented. You can structure your JS app any way you choose.
cons: A lot more boilerplate. It's not a complete framework, you'll need to use something like Knockout and Sammy to come close to everything Angular does. Since there's no defined structure, you'll looking at a lot more chance for your development team to spaghettify your code.
Which one you would offer?
I prefer Angular. I have no beef/qualms with Backbone, however. They're both good libraries, Angular is just quicker to develop in if you know what you're doing because there's less boilerplate. The problem is the learning curve for most people, really.
And i know this maybe silly but, which one has more tutorials on the what are newbie friendly? What i mean by this, there where times when i learned something new, i took a look at the documentation and it was really raw, and dry with out any basic examples.
This is the hardest one to answer. Backbone has been around longer, so there will be more tutorials... but the fact that you're going to have to roll your own framework from scratch by gluing together other libraries like Knockout and Sammy, and the fact you have to build your own application structure, basically means that a "newbie" is more likely to really shoot themselves in the foot fast.
At the same time, Angular has fewer tutorials and a steeper learning curve. But once you've learned it, it's extremely fast and easy to work with.
... so it's probably a toss up.
I hope that helps.