We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4e2e7f commit 74062c9Copy full SHA for 74062c9
app/Filament/Pages/Tools/ListOoklaServers.php
@@ -7,9 +7,9 @@
7
use Filament\Forms\Components\Textarea;
8
use Filament\Forms\Concerns\InteractsWithForms;
9
use Filament\Forms\Contracts\HasForms;
10
-use Filament\Forms\Form;
11
use Filament\Notifications\Notification;
12
use Filament\Pages\Page;
+use Filament\Schemas\Schema;
13
14
class ListOoklaServers extends Page implements HasForms
15
{
@@ -69,10 +69,10 @@ public function fetchServers(): void
69
}
70
71
72
- public function form(Form $form): Form
+ public function form(Schema $schema): Schema
73
74
- return $form
75
- ->schema([
+ return $schema
+ ->components([
76
Textarea::make('servers')
77
->label(false)
78
->rows(20)
0 commit comments