Through the "artem-schander / l5-modular" library: "dev-master" [ link installed in the composer json, I am adjusting my project to be modular and not mix everything in it (see folder Modules / Reports in the image). Everything works correctly but I would like my JS, CSS and AJAX files to be inside the same module (In this case Reports ) so I decided to create the public folder and within it the respective folders of js, css and ajax but I can not from the views instantiate the files js and css
I tried with
{!! Html::script('../../app/Modules/Informes/public/js/visorinforme.js'); !!}
Leaving from the public folder in the root and entering public in the module or
<script src="../public/js/visorinforme.js"></script>
But with none of them works for me. I would like to know if the files that are originally in the public folder of the root should remain there or if I can move them to the public folder in the new modular structure.