Angularjs and Laravel curly brackets conflict!?
If you are creating a project using Angularjs and Laravel, you will definitely encounter the curly brackets conflict problem, both need {{ $foo }} for wrapping variables in a template.
I prefer to change the Blade template engine echo statement. You can go to line 200 in blade.php (laravel/blade.php), for instance, I change it to <% $foo %>
protected static function compile_echos($value) { return preg_replace('/\<\%(.+?)\%\>/', '<?php echo $1; ?>', $value); }














