@props(['src', 'defer' => false, 'async' => false, 'module' => false]) @php // 處理路徑,移除開頭的斜線(如果有的話) $cleanSrc = ltrim($src, '/'); // 檢查文件是否存在,用於版本控制 $fullPath = public_path($cleanSrc); $version = file_exists($fullPath) ? filemtime($fullPath) : time(); // 建構完整的URL $assetUrl = asset($cleanSrc) . '?v=' . $version; // 處理額外的屬性 $attributes = ''; if ($module) $attributes .= ' type="module"'; if ($defer) $attributes .= ' defer'; if ($async) $attributes .= ' async'; @endphp