16 lines
582 B
PHP
16 lines
582 B
PHP
<!-- REQUIRED JS SCRIPTS -->
|
|
<!-- JQuery and bootstrap are required by Laravel 5.7 in resources/js/bootstrap.js-->
|
|
<!-- Laravel App -->
|
|
<script src="{{ url(mix('/js/app.js')) }}" type="text/javascript"></script>
|
|
<!-- AdminLTE -->
|
|
<script src="/js/adminlte.min.js"></script>
|
|
|
|
<!-- Our our CSRF token to each interaction -->
|
|
{{-- @todo Test that we are validating this, also axios should be doing this for us? --}}
|
|
<script type="text/javascript">
|
|
$.ajaxSetup({
|
|
headers: {
|
|
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
|
}
|
|
});
|
|
</script> |