cara menghapus gambar dari floder di laravel

//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 Illuminate\Support\Facades\File;"
Isaac