95 lines
3.7 KiB
PHP
95 lines
3.7 KiB
PHP
<!-- jQuery -->
|
|
<script src="{{ asset('plugins/jquery/jquery.min.js') }}"></script>
|
|
<!-- jQuery UI 1.11.4 -->
|
|
<script src="{{ asset('plugins/jquery-ui/jquery-ui.min.js') }}"></script>
|
|
<!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->
|
|
<script>
|
|
$.widget.bridge('uibutton', $.ui.button)
|
|
</script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="{{ asset('plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
<!-- ChartJS -->
|
|
<script src="{{ asset('plugins/chart.js/Chart.min.js') }}"></script>
|
|
<!-- Sparkline -->
|
|
<script src="{{ asset('plugins/sparklines/sparkline.js') }}"></script>
|
|
<!-- JQVMap -->
|
|
<script src="{{ asset('plugins/jqvmap/jquery.vmap.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/jqvmap/maps/jquery.vmap.usa.js') }}"></script>
|
|
<!-- jQuery Knob Chart -->
|
|
<script src="{{ asset('plugins/jquery-knob/jquery.knob.min.js') }}"></script>
|
|
<!-- daterangepicker -->
|
|
<script src="{{ asset('plugins/moment/moment.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/daterangepicker/daterangepicker.js') }}"></script>
|
|
<!-- Tempusdominus Bootstrap 4 -->
|
|
<script src="{{ asset('plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js') }}"></script>
|
|
<!-- Summernote -->
|
|
<script src="{{ asset('plugins/summernote/summernote-bs4.min.js') }}"></script>
|
|
<!-- overlayScrollbars -->
|
|
<script src="{{ asset('plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js') }}"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="{{ asset('dist/js/adminlte.js') }}"></script>
|
|
<!-- AdminLTE for demo purposes -->
|
|
<script src="{{ asset('dist/js/demo.js') }}"></script>
|
|
<!-- AdminLTE dashboard demo (This is only for demo purposes) -->
|
|
<script src="{{ asset('dist/js/pages/dashboard.js') }}"></script>
|
|
|
|
<!-- DataTables & Plugins -->
|
|
<script src="{{ asset('plugins/datatables/jquery.dataTables.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-responsive/js/dataTables.responsive.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/dataTables.buttons.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.bootstrap4.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/jszip/jszip.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/pdfmake/pdfmake.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/pdfmake/vfs_fonts.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.html5.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.print.min.js') }}"></script>
|
|
<script src="{{ asset('plugins/datatables-buttons/js/buttons.colVis.min.js') }}"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="{{ asset('dist/js/adminlte.min.js') }}"></script>
|
|
|
|
{{-- Toastr --}}
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
|
|
|
|
<!-- Select2 -->
|
|
<script src="{{ asset('plugins/select2/js/select2.full.min.js') }}"></script>
|
|
|
|
<script>
|
|
@if(Session::has('message'))
|
|
toastr.options =
|
|
{
|
|
"closeButton" : true,
|
|
"progressBar" : true
|
|
}
|
|
toastr.success("{{ session('message') }}");
|
|
@endif
|
|
|
|
@if(Session::has('error'))
|
|
toastr.options =
|
|
{
|
|
"closeButton" : true,
|
|
"progressBar" : true
|
|
}
|
|
toastr.error("{{ session('error') }}");
|
|
@endif
|
|
|
|
@if(Session::has('info'))
|
|
toastr.options =
|
|
{
|
|
"closeButton" : true,
|
|
"progressBar" : true
|
|
}
|
|
toastr.info("{{ session('info') }}");
|
|
@endif
|
|
|
|
@if(Session::has('warning'))
|
|
toastr.options =
|
|
{
|
|
"closeButton" : true,
|
|
"progressBar" : true
|
|
}
|
|
toastr.warning("{{ session('warning') }}");
|
|
@endif
|
|
</script>
|