project_directory/app/helpers.php
2025-09-03 15:18:54 +07:00

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());
}
}