I try to include views in my page via javascript using the following script:
<script>$('#b').append(
<?php
echo("@include('include.test_include')");
?>
);</script>
But I get an error of unexpected token.
I have a view in folder views/include/test_include.blade.php
Is there a way to do this :) ?
@include('include.test_include')in your template.append('@include('include.test_include')')