get('basePath'); // path to mix-manifest $file = $app->get('basePath').'mix-manifest.json'; if (file_exists($file)) { $manifest = file_get_contents($file); $files = json_decode($manifest, true); if (isset($files[$prefix.$path])) { $path = str_replace($prefix, '', $files[$prefix.$path]); } } return $path; }