diff --git a/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php b/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php index d4d5b07e4..f282c4bbc 100644 --- a/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php +++ b/app/Filament/Resources/NodeResource/RelationManagers/AllocationsRelationManager.php @@ -40,6 +40,10 @@ class AllocationsRelationManager extends RelationManager ->checkIfRecordIsSelectableUsing(fn (Allocation $allocation) => $allocation->server_id === null) ->searchable() ->columns([ + Tables\Columns\TextColumn::make('id'), + Tables\Columns\TextColumn::make('port') + ->searchable() + ->label('Port'), Tables\Columns\TextColumn::make('server.name') ->label('Server') ->icon('tabler-brand-docker') @@ -51,9 +55,6 @@ class AllocationsRelationManager extends RelationManager Tables\Columns\TextInputColumn::make('ip') ->searchable() ->label('IP'), - Tables\Columns\TextColumn::make('port') - ->searchable() - ->label('Port'), ]) ->filters([ //