Return to Snippet

Revision: 65687
at January 11, 2014 10:28 by CreativePunch


Initial Code
var customInterpolationApp = angular.module('customInterpolationApp', []);

customInterpolationApp.config(function($interpolateProvider) {
  $interpolateProvider.startSymbol('%%');
  $interpolateProvider.endSymbol('%%');
});

Initial URL
http://creative-punch.net/2014/01/use-angularjs-laravel-blade-together/

Initial Description
In this article I will show you how to use AngularJS and Laravel Blade together.
People who have been using AngularJS for a while may know of this solution. However if you are just getting started or have never used Angular with a templating engine like Blade, read ahead!

Initial Title
How to use AngularJS and Laravel Blade together.

Initial Tags
css, php, html

Initial Language
JavaScript