Allowance check
This commit is contained in:
@@ -8,7 +8,13 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="/css/app.css">
|
||||
@php
|
||||
$assetV = function ($relativePublicPath) {
|
||||
$path = public_path($relativePublicPath);
|
||||
return is_file($path) ? filemtime($path) : time();
|
||||
};
|
||||
@endphp
|
||||
<link rel="stylesheet" href="{{ asset('css/app.css') }}?v={{ $assetV('css/app.css') }}">
|
||||
|
||||
|
||||
</head>
|
||||
@@ -45,7 +51,7 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/jquery-flot@0.8.3/jquery.flot.pie.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/moment@2.29.1/moment.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue-router@3.4.9/dist/vue-router.min.js"></script>
|
||||
<script src="/js/app.js"></script>
|
||||
<script src="{{ asset('js/app.js') }}?v={{ $assetV('js/app.js') }}"></script>
|
||||
<!-- Bootstrap CSS -->
|
||||
|
||||
<footer class="bg-body-tertiary text-center text-lg-start">
|
||||
|
||||
Reference in New Issue
Block a user