Skip to content

Commit

Permalink
update route file
Browse files Browse the repository at this point in the history
  • Loading branch information
d9it committed Mar 11, 2024
1 parent c4d905c commit 7ee842f
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
Original file line number Diff line number Diff line change
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 7ee842f

Please sign in to comment.