9 lines
205 B
PHP
9 lines
205 B
PHP
<?php
|
|
|
|
if(!function_exists('ver')){
|
|
function ver($path){
|
|
$fullPath = public_path($path);
|
|
return asset($path) . '?v=' . (file_exists($fullPath) ? filemtime($fullPath) : time());
|
|
}
|
|
}
|