mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 16:56:51 +01: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)';
 | 
						|
}
 |