You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/Filament/Pages/Settings/GeneralPage.php
+21-2Lines changed: 21 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,7 @@
10
10
useFilament\Forms\Components\TextInput;
11
11
useFilament\Forms\Components\Toggle;
12
12
useFilament\Pages\SettingsPage;
13
+
useIlluminate\Support\Facades\Http;
13
14
useSquire\Models\Timezone;
14
15
15
16
class GeneralPage extends SettingsPage
@@ -66,10 +67,28 @@ protected function getFormSchema(): array
66
67
->helperText('Leave empty to disable the schedule. You can also use the cron expression generator [HERE](https://crontab.cronhub.io/) to help you make schedules.')
67
68
->nullable()
68
69
->columnSpan(1),
69
-
TextInput::make('speedtest_server')
70
+
Select::make('speedtest_server')
71
+
->label('Speedtest server ID')
70
72
->helperText('Leave empty to let the system pick the best server.')
0 commit comments