Skip to content

Commit

Permalink
Merge pull request #138 from sarapis/update-db
Browse files Browse the repository at this point in the history
update route file
  • Loading branch information
d9it committed Mar 11, 2024
2 parents 7acc0fd + 7ee842f commit 696c9bd
Show file tree
Hide file tree
Showing 2 changed files with 428 additions and 352 deletions.
6 changes: 3 additions & 3 deletions resources/views/backEnd/organization_tag/index.blade.php
Expand Up @@ -113,7 +113,7 @@
$.ajax({
type: "POST",
cache: false,
url : "{{action('backend\UserController@ajax_all')}}",
url : "{{route('user.ajax_all')}}",
data: {all_id:value,action:'delete'},
success: function(data) {
location.reload()
Expand All @@ -135,7 +135,7 @@
$.ajax({
type: "POST",
cache: false,
url : "{{action('backend\UserController@ajax_all')}}",
url : "{{route('user.ajax_all')}}",
data: {all_id:value,action:'deactivate'},
success: function(data) {
location.reload()
Expand All @@ -157,7 +157,7 @@
$.ajax({
type: "POST",
cache: false,
url : "{{action('backend\UserController@ajax_all')}}",
url : "{{route('user.ajax_all')}}",
data: {all_id:value,action:'activate'},
success: function(data) {
location.reload()
Expand Down

0 comments on commit 696c9bd

Please sign in to comment.