//suppose you have an image inside public/images folder
$image_path = "/images/filename.ext"; // Value is not URL but directory file path
if(File::exists($image_path)) {
File::delete($image_path);
}
//don't forget to add "use IlluminateSupportFacadesFile;"
//On top
use IlluminateSupportFacadesStorage;
//then
if(Storage::exists('your/path'.$file_name)){
Storage::delete('your/path'.$file_name);
/*
Delete Multiple File like this way
Storage::delete(['path/example.png', 'path/example2.png']);
*/
return true;
}