Skip to content

Commit

Permalink
Users table in Filament.
Browse files Browse the repository at this point in the history
  • Loading branch information
timvandijck committed Mar 4, 2024
1 parent fd083c1 commit 8ca7bcb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/Filament/Resources/UserResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,13 @@ public static function table(Table $table): Table

Tables\Columns\TextColumn::make('name')
->searchable(),

Tables\Columns\TextColumn::make('email')
->searchable(),

Tables\Columns\TextColumn::make('github_username')
->searchable(),

BooleanColumn::make('is_sponsor')->default(false),
BooleanColumn::make('is_admin'),
BooleanColumn::make('has_access_to_unreleased_products'),
Expand Down

0 comments on commit 8ca7bcb

Please sign in to comment.