/ Published in: JavaScript
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!
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!
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var customInterpolationApp = angular.module('customInterpolationApp', []); customInterpolationApp.config(function($interpolateProvider) { $interpolateProvider.startSymbol('%%'); $interpolateProvider.endSymbol('%%'); });
URL: http://creative-punch.net/2014/01/use-angularjs-laravel-blade-together/