mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 04:04:45 +02:00
17 lines
449 B
PHP
17 lines
449 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\DatabaseHostResource\Pages;
|
|
|
|
use App\Filament\Resources\DatabaseHostResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\CreateRecord;
|
|
|
|
class CreateDatabaseHost extends CreateRecord
|
|
{
|
|
protected static string $resource = DatabaseHostResource::class;
|
|
|
|
protected ?string $heading = 'Database Hosts';
|
|
|
|
protected ?string $subheading = '(database servers that can have individual databases)';
|
|
}
|