mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-25 00:50:32 +00:00
update
This commit is contained in:
parent
6453687bce
commit
a0b96b6d95
2 changed files with 11 additions and 1 deletions
|
@ -91,7 +91,12 @@ class GitSshKeyResource extends Resource
|
|||
{
|
||||
return $table
|
||||
->columns([
|
||||
//
|
||||
Tables\Columns\TextColumn::make('name')
|
||||
->searchable()
|
||||
->sortable(),
|
||||
Tables\Columns\TextColumn::make('hostingSubscription.domain')
|
||||
->searchable()
|
||||
->sortable(),
|
||||
])
|
||||
->filters([
|
||||
//
|
||||
|
|
|
@ -15,4 +15,9 @@ class GitSshKey extends Model
|
|||
'private_key',
|
||||
'public_key',
|
||||
];
|
||||
|
||||
public function hostingSubscription()
|
||||
{
|
||||
return $this->belongsTo(HostingSubscription::class);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue