Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created February 5, 2018 12:00
Show Gist options
  • Save mitrallex/725ac4b0e089679da8a8a26f76481358 to your computer and use it in GitHub Desktop.
Save mitrallex/725ac4b0e089679da8a8a26f76481358 to your computer and use it in GitHub Desktop.
laravel-file-hosting
deleteFile() {
axios.post('files/delete/' + this.deletingFile.id)
.then(response => {
this.showNotification('File successfully deleted!', true);
this.fetchFile(this.activeTab, this.pagination.current_page);
})
.catch(error => {
this.errors = error.response.data.errors();
this.showNotification('Something went wrong! Please try again later.', false);
this.fetchFile(this.activeTab, this.pagination.current_page);
});
this.cancelDeleting();
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment