refactor: Renderiza o dashboard geral.

This commit is contained in:
lukibeg 2025-11-16 21:42:45 -03:00
parent aa9affa16d
commit 16b3e0dd17
1 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ class ClientController extends Controller
public function __construct(ClientService $userService) {}
public function dashboard(Request $request): View
{
$clients = Client::all();
return view('dashboard', ['clients' => $clients]);
return view('dashboard');
}
}