mirror of
https://github.com/coollabsio/coolify.git
synced 2026-06-13 19:09:50 +00:00
27 lines
519 B
PHP
27 lines
519 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Livewire\Project\Database\Keydb;
|
||
|
|
|
||
|
|
use App\Models\StandaloneKeydb;
|
||
|
|
use App\Traits\HasDatabaseStatusInfo;
|
||
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
||
|
|
use Livewire\Component;
|
||
|
|
|
||
|
|
class StatusInfo extends Component
|
||
|
|
{
|
||
|
|
use AuthorizesRequests;
|
||
|
|
use HasDatabaseStatusInfo;
|
||
|
|
|
||
|
|
public StandaloneKeydb $database;
|
||
|
|
|
||
|
|
protected function databaseLabel(): string
|
||
|
|
{
|
||
|
|
return 'KeyDB';
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function showPublicUrlPlaceholder(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|