In the documentation, I found:
When using the local driver, please note that all file operations are related to the root directory defined in your configuration file. By default, this value is set to the repository / application directory . Therefore, the following method will save the file in storage / app / file.txt:
Storage::disk('local')->put('file.txt', 'Contents');
, Storage::delete , .
, Laravel Recipies:
\File::delete($filename);
\File::delete($file1, $file2, $file3);
$files = array($file1, $file2);
\File::delete($files);
\, Laravel 5.