I am trying to append Blade syntax from Laravel but can\'t get the browser to understand Blade. When I append the Blade syntax from my js file it output the code onto the page.<
you can generate your view in your controller. and append it to your jQuery
//blade $html = view('someView')->render(); retrun json_encode($html)
And in your blade you can do something like this