json()); } /** * Display the specified resource. */ public function show(string $id) { // return response("User with id " . $id); } /** * Update the specified resource in storage. */ public function update(Request $request, string $id) { // return response("Update user " . $id); } /** * Remove the specified resource from storage. */ public function destroy(string $id) { // return response("Destroy user " . $id); } }