File: /home/imensosw/www/amanda/resources/views/admin.blade.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{csrf_token()}}">
<link rel="icon" href="{{ asset('images/favicon.ico') }}" />
<title>Admin Swemanda</title>
<link rel="stylesheet" href="{{ asset('css/bootstrap.min.css') }}" type="text/css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" type="text/css">
<link rel="stylesheet" href="{{ asset('css/chosen.min.css') }}">
<link rel="stylesheet" href="{{ asset('css/style.css') }}" type="text/css">
<link rel="stylesheet" href="{{ asset('css/responsive.css') }}" type="text/css">
<!-- <link rel="stylesheet" href="{{ asset('css/swiper.min.css') }}" type="text/css">
<link rel="stylesheet" href="{{ asset('css/fonts/fonts.css') }}" />
<link href="{{ mix('css/app.css') }}" rel="stylesheet"> -->
</head>
<body>
<div id="app">
<app></app>
</div>
<script src="{{ config('constants.porturl') }}/socket.io/socket.io.js"></script>
<script src="{{ mix('js/bootstrap.js') }}"></script>
<script src="{{ mix('js/app.js') }}"></script>
<script src="{{ asset('js/popper.min.js') }}"></script>
<script src="{{ asset('js/chosen.jquery.min.js') }}"></script>
<script src="{{ asset('js/jquery.min.js') }}"></script>
<!-- <script src="{{ asset('js/paypal_checkout/vue-paypal-checkout.min.js') }}"></script> -->
<script type="text/javascript">
$('.navbar-toggler').on("click", function() {
$("body").toggleClass("sidebar-icon-only");
$(".page-body-wrapper").toggleClass("sidebar-icon-only");
$(this).find("i").toggleClass("fa-angle-double-left fa-angle-double-right");
});
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
jQuery('.img-svg').each(function(){
var $img = jQuery(this);
var imgID = $img.attr('id');
var imgClass = $img.attr('class');
var imgURL = $img.attr('src');
jQuery.get(imgURL, function(data) {
// Get the SVG tag, ignore the rest
var $svg = jQuery(data).find('svg');
// Add replaced image's ID to the new SVG
if(typeof imgID !== 'undefined') {
$svg = $svg.attr('id', imgID);
}
// Add replaced image's classes to the new SVG
if(typeof imgClass !== 'undefined') {
$svg = $svg.attr('class', imgClass+' replaced-svg');
}
// Remove any invalid XML tags as per http://validator.w3.org
$svg = $svg.removeAttr('xmlns:a');
// Check if the viewport is set, if the viewport is not set the SVG wont't scale.
if(!$svg.attr('viewBox') && $svg.attr('height') && $svg.attr('width')) {
$svg.attr('viewBox', '0 0 ' + $svg.attr('height') + ' ' + $svg.attr('width'))
}
// Replace image with new SVG
$img.replaceWith($svg);
}, 'xml');
});
</script>
</body>
</html>