From 759c7d6624c850a05dfffd819a46c4b05066b15c Mon Sep 17 00:00:00 2001 From: lukibeg Date: Thu, 20 Nov 2025 14:15:26 -0300 Subject: [PATCH] =?UTF-8?q?feat:=20Constru=C3=A7=C3=A3o=20do=20m=C3=A9todo?= =?UTF-8?q?=20para=20visualizar=20usu=C3=A1rio.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Services/UserService.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Services/UserService.php b/app/Services/UserService.php index d72284f..ff082d2 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -13,4 +13,10 @@ public function createUser(array $user) { return User::create($user); } + + public function showUsers() + { + $users = User::all(); + return $users; + } }