{{ }} is translated to echo statement in php, so you basically opening another php tag inside your method call, remove braces arount 'name'
I am not using angular but you could try to escape blade then.
@{{ This will not be processed by Blade }}
I use Angular repeat option, so I must to use it in {{ Form::text('{{name}}') }}
Than I cannot help you. I have never used angular but my best guess would be something with escaping that braces.
Either in Laravel or in AngularJS you have to configure it to use a different delimiter. For example, in Laravel, you can use
Blade::setEscapedContentTags('[[', ']]');
Blade::setContentTags('[[[', ']]]');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community