mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 21:04:44 +02:00
16 lines
427 B
PHP
16 lines
427 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\DatabaseHostResource\Pages;
|
|
|
|
use App\Filament\Resources\DatabaseHostResource;
|
|
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)';
|
|
}
|