Skip to content

Commit

Permalink
Merge pull request #1124 from dbarzin/dev
Browse files Browse the repository at this point in the history
imporve performance of index
  • Loading branch information
dbarzin authored Feb 20, 2025
2 parents 07e6028 + 6a54efd commit f7bbd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/LogicalServerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function index()
{
abort_if(Gate::denies('logical_server_access'), Response::HTTP_FORBIDDEN, '403 Forbidden');

$logicalServers = LogicalServer::with('applications', 'servers')->orderBy('name')->get();
$logicalServers = LogicalServer::with('applications', 'servers', 'cluster')->orderBy('name')->get();

return view('admin.logicalServers.index', compact('logicalServers'));
}
Expand Down

0 comments on commit f7bbd3a

Please sign in to comment.