fixing freedcamp bugs and fixed api issues

This commit is contained in:
Ritikesh yadav
2024-04-24 15:20:53 +05:30
parent 6ee414be9e
commit 4266fee824
100 changed files with 8806 additions and 8325 deletions

View File

@@ -282,7 +282,7 @@ class AdminProfileController extends Controller
abort(404);
}
$users = User::where(['role' => 0, 'status' => '1'])->get();
$users = User::where(['role' => false, 'status' => true])->get();
return view('Admin.Pages.manage_sub_admin.update_user_password', compact('users'));
}