/home/techb158/ileadtechnology.com/SSM/vendor/laravel/framework/src/Illuminate/Http
NameSizeModeActions
Client/-0755rm
Concerns/-0755rm
Exceptions/-0755rm
Middleware/-0755rm
Resources/-0755rm
Testing/-0755rm
composer.json11360644editdlrm
File.php1550644editdlrm
FileHelpers.php10010644editdlrm
JsonResponse.php30700644editdlrm
LICENSE.md10750644editdlrm
RedirectResponse.php59540644editdlrm
Request.php157900644editdlrm
Response.php28790644editdlrm
ResponseTrait.php31860644editdlrm
UploadedFile.php38240644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/framework/src/Illuminate/Http/FileHelpers.php (1001B)
getRealPath(); } /** * Get the file's extension. * * @return string */ public function extension() { return $this->guessExtension(); } /** * Get a filename for the file. * * @param string|null $path * @return string */ public function hashName($path = null) { if ($path) { $path = rtrim($path, '/').'/'; } $hash = $this->hashName ?: $this->hashName = Str::random(40); if ($extension = $this->guessExtension()) { $extension = '.'.$extension; } return $path.$hash.$extension; } }