@php
$cssPath = public_path('assets/css/material-dashboard.min.css');
$cssVer = file_exists($cssPath) ? filemtime($cssPath) : time();
@endphp
@stack('styles')
@yield('content')
@php
$jsBootstrap = public_path('assets/js/core/bootstrap.bundle.min.js');
$jsBootstrapVer = file_exists($jsBootstrap) ? filemtime($jsBootstrap) : time();
$jsChart = public_path('assets/js/plugins/chartjs.min.js');
$jsChartVer = file_exists($jsChart) ? filemtime($jsChart) : time();
$jsMat = public_path('assets/js/material-dashboard.min.js');
$jsMatVer = file_exists($jsMat) ? filemtime($jsMat) : time();
@endphp
@stack('scripts')