내 스크립트보기 (file.blade.php)에 ckeditor.js를로드하지 않습니다Laravel 5.4 : Ckeditor.js하지 뷰에로드 (blade.php)
세부 사항 :
내 Laravel 5.4 폴더 구조 (일부)는 다음과 같습니다. 나는이 같은 demo.blade.php에 ckeditor.js라고 한
-example.com
----Ckeditor
-------ckeditor.js
----Public //this is the document root of example.com
----Resources
-------Views
----------file.blade.php
...
방법 1 :
<script src="{{url('Ckeditor/ckeditor.js')}}"></script>
방법 2 :
<script src="http://example.com/Ckeditor/ckeditor.js"></script>
있는 방법 file.blade.php에 ckeditor.js를로드하십시오.
어떻게해야합니까?
하면 브라우저를 통해 JS 파일에 액세스 할 수 있습니까? like : http://example.com/Ckeditor/ckeditor.js – absiddiqueLive