In my blade file i have attach one file to download by giving directly its path in tag. While i click on that link i have use ajax to remove that file from server,Now i can able to remove the file but i am not getting download-popup.Any one can help. Thanks in advance.
blade file code
<a href="/temp/invalidData.csv" style="position: relative;padding-left: 20px" id="invalid">InvalidData.csv</a>
ajax code
$(document).ready(function(){
    $(document).on('click','#invalid',function(){
        $.ajax({
              type:"post",
              url:'/delete-file',
              dataType:"json",
              success:function(data){
                if (data.type == "success") {
                        } else
                        {
                        }
                        return false;
        }
      });
        return false;
    });
});
controller code
public function deleteFile(){
        $file= public_path(). "/temp/invalidData.csv";
       return response()->download($file)->deleteFileAfterSend();
    }
 
    