/home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Foundation
NameSizeModeActions
Auth/-0755rm
Bootstrap/-0755rm
Bus/-0755rm
Console/-0755rm
Events/-0755rm
Exceptions/-0755rm
Http/-0755rm
Providers/-0755rm
stubs/-0755rm
Support/-0755rm
Testing/-0755rm
Validation/-0755rm
AliasLoader.php51550644editdlrm
Application.php384130644editdlrm
ComposerScripts.php16450644editdlrm
EnvironmentDetector.php19650644editdlrm
helpers.php233160644editdlrm
Inspiring.php30660644editdlrm
Mix.php20960644editdlrm
PackageManifest.php43730644editdlrm
ProviderRepository.php64300644editdlrm
Edit: /home/techb158/immovalet.com/vendor/laravel/framework/src/Illuminate/Foundation/Mix.php (2096B)
get('app.mix_hot_proxy_url'); if (! empty($customUrl)) { return new HtmlString("{$customUrl}{$path}"); } if (Str::startsWith($url, ['http://', 'https://'])) { return new HtmlString(Str::after($url, ':').$path); } return new HtmlString("//localhost:8080{$path}"); } $manifestPath = public_path($manifestDirectory.'/mix-manifest.json'); if (! isset($manifests[$manifestPath])) { if (! is_file($manifestPath)) { throw new Exception('The Mix manifest does not exist.'); } $manifests[$manifestPath] = json_decode(file_get_contents($manifestPath), true); } $manifest = $manifests[$manifestPath]; if (! isset($manifest[$path])) { $exception = new Exception("Unable to locate Mix file: {$path}."); if (! app('config')->get('app.debug')) { report($exception); return $path; } else { throw $exception; } } return new HtmlString(app('config')->get('app.mix_url').$manifestDirectory.$manifest[$path]); } }