Mustache vs other engines. Maybe I should use another template engine?
- by marcioAlmada
I'm passing an object to mustache and this object has a method with one parameter. Is something like this possible with Mustache and PHP?
{{object.method(parameter)}}
If it gets too laborious to achieve this with Mustache, what template engine would you recommend?
Remember I need to pass parameters to object methods while in the view
context (like we do with helpers). The nearest as possible to mustache syntax is welcome.