diff options
Diffstat (limited to 'resources/js')
| -rw-r--r-- | resources/js/bootstrap.js | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js index 6922577..63605fa 100644 --- a/resources/js/bootstrap.js +++ b/resources/js/bootstrap.js @@ -1,6 +1,19 @@  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. + */ + +try { +    window.Popper = require('popper.js').default; +    window.$ = window.jQuery = require('jquery'); + +    require('bootstrap'); +} catch (e) {} + +/**   * We'll load the axios HTTP library which allows us to easily issue requests   * to our Laravel back-end. This library automatically handles sending the   * CSRF token as a header based on the value of the "XSRF" token cookie. | 
