add table scraping log and datatable server side

This commit is contained in:
arifal
2025-01-24 22:29:14 +07:00
parent 5f93a18f60
commit 9aab6f899d
15 changed files with 715 additions and 9 deletions

View File

@@ -21,4 +21,7 @@ class UsersController extends Controller
return response(['user' => $user, 'token' => $token], 200);
}
public function index(){
return response()->json(User::all());
}
}