Skip to content

Commit

Permalink
pint + Relation Manager Titles
Browse files Browse the repository at this point in the history
  • Loading branch information
notAreYouScared committed Feb 7, 2025
1 parent d4d95af commit 1994585
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class ListDatabaseHosts extends ListRecords
{
protected static string $resource = DatabaseHostResource::class;


public function table(Table $table): Table
{
return $table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ class AllocationsRelationManager extends RelationManager

protected static ?string $icon = 'tabler-plug-connected';

public function setTitle(): string
{
return trans('admin/server.allocations');

}

public function table(Table $table): Table
{
return $table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ class NodesRelationManager extends RelationManager

protected static ?string $icon = 'tabler-brand-docker';

public function setTitle(): string
{
return trans('admin/node.table.servers');
}

public function table(Table $table): Table
{
return $table
Expand Down

0 comments on commit 1994585

Please sign in to comment.