Я получаю 2 ошибки, относящиеся к файлу app.js
в laravel, и не знаю, почему?
Uncaught ReferenceError: $ is not defined
refer to:
<script>
$(function () {
$('[data-toggle="tooltip"]').tooltip()
});
</script>
Uncaught TypeError: Cannot call a class as a function
refer to:
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function"); //here
}
}
PS: файл app.js
создаст и объединит все активы изnode.js.
Вопрос
Как это исправить?