24 lines
509 B
PHP
24 lines
509 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\Resources\TenantResource\Pages;
|
|
|
|
use Filament\Pages\Page;
|
|
|
|
class OnboardingManagedTenant extends Page
|
|
{
|
|
protected static bool $shouldRegisterNavigation = false;
|
|
|
|
protected static bool $isDiscovered = false;
|
|
|
|
protected static ?string $title = 'Onboard managed tenant';
|
|
|
|
protected string $view = 'filament.pages.onboarding-managed-tenant';
|
|
|
|
public function mount(): void
|
|
{
|
|
$this->redirect('/admin/tenants/create');
|
|
}
|
|
}
|