I am working on an application that has a custom model that works like this:
openFastModal(content);
I tried to use a blade to get the content:
var content = '{!! view('forms.help') !!}'
This does not work, The content variable get rendered wrong
How can I add the content of a blade into a javascript variable as a string?