//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;
}