I'm trying to import jquery library in my Laravel project, in my firebug i'm seeing the message:
"NetworkError: 403 Forbidden - http://test.local/js/jquery_min.js"
Why is LARAVEL blocking my script, to be loaded?
I'm trying to import jquery library in my Laravel project, in my firebug i'm seeing the message:
"NetworkError: 403 Forbidden - http://test.local/js/jquery_min.js"
Why is LARAVEL blocking my script, to be loaded?
I think there might be error in file to access or file name may be wrong
check whether the file name is jquery_min.js or jquery.min.js, if file name was right then try access with cdn : https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js in script tag
Notify if you found any solutions Thank you