Skip to content

Commit b0e130e

Browse files
committed
Update dependencies and boilerplate changes
1 parent e6c2b1b commit b0e130e

File tree

8 files changed

+7
-32
lines changed

8 files changed

+7
-32
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ DB_TENANT_DATABASE=tenant
99

1010
LOG_CHANNEL=stack
1111

12+
MULTITENANCY=false
13+
1214
DB_CONNECTION=mysql
1315
DB_HOST=127.0.0.1
1416
DB_PORT=3306

app/Filament/Admin/Resources/Users/Schemas/UserForm.php

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -79,25 +79,6 @@ public static function configure(Schema $schema): Schema
7979
]),
8080
]),
8181

82-
Tab::make('Account Settings')
83-
->schema([
84-
Section::make('Account Status')
85-
->description('Manage account verification and security settings')
86-
->columns(2)
87-
->schema([
88-
DateTimePicker::make('email_verified_at')
89-
->label('Email Verified At')
90-
->placeholder('Not verified')
91-
->helperText('Mark as verified to enable full account access')
92-
->native(false),
93-
94-
TextInput::make('current_team_id')
95-
->label('Current Team ID')
96-
->numeric()
97-
->placeholder('Default team')
98-
->helperText('The user\'s active team context'),
99-
]),
100-
]),
10182
]),
10283
]);
10384
}

app/Providers/Filament/AdminPanelProvider.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ public function panel(Panel $panel): Panel
6767
])
6868
->plugins([
6969
\BezhanSalleh\FilamentShield\FilamentShieldPlugin::make()
70+
->navigationGroup('Administration')
7071
]);
7172

7273
if (Features::hasTeamFeatures()) {

config/jetstream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
// Features::termsAndPrivacyPolicy(),
6262
// Features::profilePhotos(),
6363
// Features::api(),
64-
Features::teams(['invitations' => true]),
64+
// Features::teams(['invitations' => true]),
6565
Features::accountDeletion(),
6666
],
6767

package-lock.json

Lines changed: 1 addition & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/theme-Br54Y4CH.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/assets/theme-Vk1LS9MR.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"resources/css/filament/admin/theme.css": {
12-
"file": "assets/theme-Vk1LS9MR.css",
12+
"file": "assets/theme-Br54Y4CH.css",
1313
"src": "resources/css/filament/admin/theme.css",
1414
"isEntry": true,
1515
"name": "theme",

0 commit comments

Comments
 (0)