problems with the css and js in laravel [closed]

1

I am using laravel 5.6 and install the Infyom package with the AdminLTE template, the point is that the reference to the css and js of that template are Internet addresses and the view works fine but only on the PC where I am programming it when I enter the site from another pc you do not see any style nor do the scripts work, I think they are stored in cache on my pc because they work even without internet.

The idea is that I downloaded those css and js to have them local but when I remove the internet reference and put my local reference to the files it just does not work.

This is an example of how I include the Select2 libraries

 <link rel="stylesheet" href="{{asset('css/select2.min.css')}}"> //esto en la parte del css y en la parte de los scripts
<script src="{{asset('js/select2.min.js ')}}"></script>
    
asked by Luis Dariel Valenciano 02.04.2018 в 15:18
source

0 answers