order_gizi/app/helpers.php
2025-07-17 16:31:35 +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());
}
}