33 lines
1011 B
JavaScript
33 lines
1011 B
JavaScript
|
|
window._ = require('lodash');
|
|
|
|
/**
|
|
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
|
|
* for JavaScript based Bootstrap features such as modals and tabs. This
|
|
* code may be modified to fit the specific needs of your application.
|
|
*/
|
|
|
|
window.$ = window.jQuery = require('jquery');
|
|
require('bootstrap-sass/assets/javascripts/bootstrap');
|
|
|
|
/**
|
|
* Vue is a modern JavaScript library for building interactive web interfaces
|
|
* using reactive data binding and reusable components. Vue's API is clean
|
|
* and simple, leaving you to focus on building your next great project.
|
|
*/
|
|
|
|
window.Vue = require('vue');
|
|
require('vue-resource');
|
|
|
|
/**
|
|
* We'll register a HTTP interceptor to attach the "CSRF" header to each of
|
|
* the outgoing requests issued by this application. The CSRF middleware
|
|
* included with Laravel will automatically verify the header's value.
|
|
*/
|
|
|
|
Vue.http.interceptors.push(function (request, next) {
|
|
request.headers['X-CSRF-TOKEN'] = Laravel.csrfToken;
|
|
|
|
next();
|
|
});
|